1image efi-part.vfat { 2 vfat { 3 file EFI { 4 image = "efi-part/EFI" 5 } 6 file Image { 7 image = "Image" 8 } 9 } 10 11 size = 32M 12} 13 14image disk.img { 15 hdimage { 16 gpt = true 17 } 18 19 partition boot { 20 image = "efi-part.vfat" 21 partition-type-uuid = c12a7328-f81f-11d2-ba4b-00a0c93ec93b 22 offset = 32K 23 bootable = true 24 } 25 26 partition root { 27 partition-type-uuid = b921b045-1df0-41c3-af44-4c6f280d3fae 28 image = "rootfs.ext2" 29 } 30} 31