12345678910111213141516171819202122232425262728293031323334353637 |
- 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 root1 {
- partition-type = 0x83
- image = "rootfs.ext"
- size = 128M
- }
- partition root2 {
- partition-type = 0x83
- image = "rootfs.ext"
- size = 128M
- }
- partition cfgfs {
- partition-type = 0x88
- image = "cfgfs.img"
- }
- }
|