1image efi-part.vfat { 2 vfat { 3 file EFI { 4 image = "efi-part/EFI" 5 } 6 7 file bzImage { 8 image = "bzImage" 9 } 10 } 11 12 size = 16352K # 16MB - 32KB 13} 14 15image disk.img { 16 hdimage { 17 gpt = true 18 } 19 20 partition boot { 21 image = "efi-part.vfat" 22 partition-type-uuid = c12a7328-f81f-11d2-ba4b-00a0c93ec93b 23 offset = 32K 24 bootable = true 25 } 26 27 partition root { 28 partition-type-uuid = 44479540-f297-41b2-9af7-d131d5f0458a 29 partition-uuid = UUID_TMP 30 image = "rootfs.ext2" 31 } 32} 33