1image efi-part.vfat { 2 vfat { 3 file EFI { 4 image = "efi-part/EFI" 5 } 6 7 file Image { 8 image = "Image" 9 } 10 } 11 12 size = 64M 13} 14 15image disk.img { 16 hdimage { 17 gpt = true 18 } 19 20 partition boot { 21 partition-type = 0xEF 22 image = "efi-part.vfat" 23 } 24 25 partition root { 26 partition-type = 0x83 27 image = "rootfs.ext2" 28 } 29} 30