blob: ae69cb6e3ce28174ff0335a14fc9f67e78048dcc [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001# short-description: Example of partitioned image with complex layout
2# long-description: This image contains boot partition and 3 rootfs partitions
3# created from core-image-minimal and wic-image-minimal image recipes.
4
Brad Bishop6e60e8b2018-02-01 10:27:11 -05005part /boot --source bootimg-pcbios --ondisk sda --label boot --active --align 1024
6part / --source rootfs --ondisk sda --fstype=ext4 --label platform --align 1024 --use-uuid
Brad Bishop316dfdd2018-06-25 12:45:53 -04007part /media --source rootfs --rootfs-dir=wic-image-minimal --ondisk sda --fstype=ext4 --label uuid-test --align 1024 --use-uuid --fsuuid 2c71ef06-a81d-4735-9d3a-379b69c6bdba
Brad Bishop6e60e8b2018-02-01 10:27:11 -05008part /mnt --source rootfs --rootfs-dir=wic-image-minimal --ondisk sda --fstype=ext4 --label core --align 1024
Patrick Williamsc124f4f2015-09-15 14:41:29 -05009
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050010bootloader --ptable gpt --timeout=0 --append="rootwait console=tty0"