123456789101112131415161718192021222324252627282930 |
- image efi-part.vfat {
- vfat {
- file EFI {
- image = "efi-part/EFI"
- }
- }
- size = 32M
- }
- image disk.img {
- hdimage {
- }
- partition boot {
- partition-type = 0xEF
- image = "efi-part.vfat"
- }
- partition root {
- partition-type = 0x83
- image = "rootfs.ext"
- }
- partition cfgfs {
- partition-type = 0x88
- image = "cfgfs.img"
- }
- }
|