Hello,
To create imx-boot image in Yocto you need to follow the next steps:
1. Follow the steps of chapters 3 and 4 called "Host Setup" and "Yocto Project Setup" on i.MX Yocto Project User's Guide.
2. After the command "repo sync" you have to put the next command:
DISTRO=fsl-imx-xwayland MACHINE=<machine> source imx-setup-release.sh -b <build directory>
Where:
<machine> is the board that you are using.


<build directory> the name of the directory where you want to deploy all the generated files.
3. Compile your boot image with the next command:
bitbake -c deploy imx-boot
4. You will have the outputs in the next folder:
/imx-yocto-bsp/<build directory>/tmp/deploy/images/<machine>
Best regards.