Hi,
I've got a Yocto distribution installed for an i.mx8M PLUS processor board.
To be able to compile my own programs, to create the toolchain I use:
bitbake core-image-minimal -c populate_sdk
Then I want to make changes to linux image (DTS definition), so I've installed devtool with:
devtool modify virtual/kernel
So I create the linux image after making changes with:
devtool build linux-imx
This works ok, but If I want now to install new recipes to Yocto, I make again:
bitbake core-image-minimal -c populate_sdk
And now I get an error related to tee.bin:
ERROR: imx-boot-1.0-r0 do_compile: ExecutionError('/home/yo/Atenea/Yocto/IBR215-yocto5.0-bsp-20241101/ibr215/tmp/work/imx8mpevk-poky-linux/imx-boot/1.0/temp/run.do_compile.4739', 1, None, None)
ERROR: Logfile of failure stored in: /home/yo/Atenea/Yocto/IBR215-yocto5.0-bsp-20241101/ibr215/tmp/work/imx8mpevk-poky-linux/imx-boot/1.0/temp/log.do_compile.4739
Log data follows:
| DEBUG: Executing shell function do_compile
| cp: cannot stat '/home/yo/Atenea/Yocto/IBR215-yocto5.0-bsp-20241101/ibr215/workspace/deploy/images/tee.bin': No such file or directory
What am I doing wrong?
Regards