123456789101112131415161718192021222324252627282930313233 |
- image efi-part.vfat {
- vfat {
- file EFI {
- image = "efi-part/EFI"
- }
- }
- size = 32M
- }
- image disk.img {
- hdimage {
- partition-table-type = "gpt"
- }
- partition boot {
- image = "efi-part.vfat"
- partition-type-uuid = U
- offset = 32K
- bootable = true
- }
- partition root {
- partition-type-uuid = 44479540-f297-41b2-9af7-d131d5f0458a
- image = "rootfs.ext"
- }
- partition cfgfs {
- partition-type-uuid = 44479540-f297-41b2-9af7-d131d5f0458a
- image = "cfgfs.img"
- }
- }
|