Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I find my Yocto generated image? It was made using poky

I am creating an image for my x86-64 machine using yocto, but I cannot find the image generated by it. I have already explored the files (especially the build folder) but cannot find them.

Inside of /poky there are the following folders:

bitbake/  
contrib/        
meta/       
meta-selftest/  
meta-yocto-bsp/
build/    
documentation/  
meta-poky/  
meta-skeleton/  
scripts/

Inside of /build there are the following folders:

cache/  
conf/  
downloads/  
poky/  
sstate-cache/  
tmp/

Inside them are multiple files, however, I cannot find an image file that I can burn into a USB flash drive.

like image 348
Noob Avatar asked Sep 05 '25 03:09

Noob


1 Answers

Your results are stored in /build/tmp/deploy/images/...

You can flash the wic images like:

sudo dd if=core-image-sato-genericx86-64.wic of=/dev/<urdevice> bs=4M status=progress
like image 194
Maik Nassauer Avatar answered Sep 07 '25 20:09

Maik Nassauer