Hi @Et_MM!
Apparently you have configured the machine to imx93-evk
Try following the steps that we provide in our github.
#Install the repo utility:
$: mkdir ~/bin
$: curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
$: chmod a+x ~/bin/repo
$: PATH=${PATH}:~/bin
#Download i.MX Linux Yocto Release:
$: mkdir ${MY_YOCTO} # this directory will be the top directory of the Yocto source code
$: cd ${MY_YOCTO}
$: repo init -u https://github.com/nxp-imx/imx-manifest -b imx-linux-scarthgap -m imx-6.6.36-2.1.0.xml
$: repo sync
If errors on repo init, remove the .repo directory and try repo init again.
#Integrate meta-imx-frdm recipes into the Yocto code base:
$: cd ./sources
$: git clone https://github.com/nxp-imx-support/meta-imx-frdm.git
$: cd meta-imx-frdm
$: git checkout imx-frdm-2.0
Change to the top directory of the Yocto source code and execute the command below to setup environment for build.
#For i.MX93 FRDM
$: MACHINE=imx93frdm DISTRO=fsl-imx-xwayland source sources/meta-imx-frdm/tools/imx-frdm-setup.sh -b frdm-imx93
Run the command below to generate Yocto images:
$: bitbake <image recipe>
Some image recipes:
| Image Name |
Description |
| imx-image-core |
core image with basic graphics and no multimedia |
| imx-image-multimedia |
image with multimedia and graphics |
| imx-image-full |
image with multimedia and machine learning and Qt |
Best Regards!
Chavira