mirror of
git://git.yoctoproject.org/poky
synced 2026-04-02 02:49:11 +00:00
Removed dependency to core-image-minimal rootfs from the recipe and .wks file. This was a bad idea as recipes are not allowed to use other recipe's rootfs or anything else from workdir. This should also fix test_qemu test case when rm_work is enabled. (From OE-Core rev: 0f1879982ab6006f14ac2c9f5546a7b1f79460cd) Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 lines
576 B
Plaintext
10 lines
576 B
Plaintext
# short-description: Example of partitioned image with complex layout
|
|
# long-description: This image contains boot partition and 3 rootfs partitions
|
|
# created from core-image-minimal and wic-image-minimal image recipes.
|
|
|
|
part /boot --source bootimg-pcbios --ondisk sda --label boot --active --align 1024
|
|
part / --source rootfs --ondisk sda --fstype=ext4 --label platform --align 1024 --use-uuid
|
|
part /mnt --source rootfs --rootfs-dir=wic-image-minimal --ondisk sda --fstype=ext4 --label core --align 1024
|
|
|
|
bootloader --ptable gpt --timeout=0 --append="rootwait console=tty0"
|