Hi @GnasUhn!
Thank you for contacting NXP Support!
You can follow our Yocto Project User guide to install the required packages.
Install the repo utility
To get the BSP you need to have repo installed.
$ mkdir ~/bin
$ curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
$ chmod a+x ~/bin/repo
$ PATH=${PATH}:~/bin
Download the Yocto Project BSP for i.MX
$ mkdir desktop
$ cd desktop
$ repo init -u https://github.com/nxp-imx/imx-manifest -b imx-linux-kirkstone -m imx-5.15.71-2.2.0_desktop.xml
$ repo sync
Create a new build folder
If you want to create a new build folder:
$ DISTRO=imx-desktop-xwayland MACHINE=imx8mpevk source imx-setup-desktop.sh -b build-desktop
Note: The available build MACHINEs for the below boards:
imx8mpevk - i.MX8MP-EVK
imx8mqevk - i.MX8MQ-EVK
imx8mmevk - i.MX8MM-EVK
imx8mnevk - i.MX8MN-EVK
imx8qmmek - i.MX8QM-MEK
imx8ulpevk - i.MX8ULP-EVK
imx8qxpc0mek - i.MX8QXP-MEK with silicon revision C0 chip
Use an existing build folder
If you want to build in an existing build folder:
$ cd desktop
$ source setup-environment build-desktop
Build the image for i.MX
$ bitbake imx-image-desktop
https://github.com/nxp-imx/meta-nxp-desktop
Best Regards!
Chavira