Poky provides several predesigned image recipes that we can use to build our own binary image. We can check the list of available images by running the following command from the poky directory:
$ ls meta*/recipes*/images/*.bb
All the recipes provide images which are a set of unpacked and configured packages, generating a filesystem that we can use on a hardware or one of the supported QEMU machines.
Next, we can see the list of most commonly used images:
- core-image-minimal: This is a small image allowing a device to boot, and it is very useful for kernel and boot loader tests and development.
- core-image-base: This is a console-only image that fully supports the target device hardware.
- core-image-weston: This is an image that provides the Wayland protocol libraries and the reference Weston compositor.
- core-image-x11: This is a very basic X11 image with...