genimage-efi-dual.cfg 658 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. image efi-part.vfat {
  2. vfat {
  3. file EFI {
  4. image = "efi-part/EFI"
  5. }
  6. }
  7. size = 32M
  8. }
  9. image disk.img {
  10. hdimage {
  11. partition-table-type = "gpt"
  12. }
  13. partition boot {
  14. image = "efi-part.vfat"
  15. partition-type-uuid = U
  16. offset = 32K
  17. bootable = true
  18. }
  19. partition root1 {
  20. partition-type-uuid = 44479540-f297-41b2-9af7-d131d5f0458a
  21. image = "rootfs.ext"
  22. size = 128M
  23. }
  24. partition root2 {
  25. partition-type-uuid = 44479540-f297-41b2-9af7-d131d5f0458a
  26. image = "rootfs.ext"
  27. size = 128M
  28. }
  29. partition cfgfs {
  30. partition-type-uuid = 44479540-f297-41b2-9af7-d131d5f0458a
  31. image = "cfgfs.img"
  32. }
  33. }