yocto-public/1-concepts/image.md

18 lines
371 B
Markdown
Raw Permalink Normal View History

2015-07-21 12:22:25 +00:00
# Image
The image defines the final disk image that will be flashed on the target device.
Generated disk/partition images put in `$POKY/build/tmp/deploy/images/$MACHINE`
Available images can be listed with:
```sh
ls $POKY/meta*/recipes-*/images/*.bb
```
## Bitbake
Generally when you use bitbake, you build an image:
```sh
IMAGE=core-image-minimal
bitbake $IMAGE
```