blob: 9410b684bed8ab29a66779aef601f7c981db88ec [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
7part /mnt --source rootfs --rootfs-dir=wic-image-minimal --ondisk sda --fstype=ext4 --label core --align 1024
Patrick Williamsc124f4f2015-09-15 14:41:29 -05008
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05009bootloader --ptable gpt --timeout=0 --append="rootwait console=tty0"