genimage-efi.cfg 512 B

123456789101112131415161718192021222324252627282930313233
  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 root {
  20. partition-type-uuid = 44479540-f297-41b2-9af7-d131d5f0458a
  21. image = "rootfs.ext"
  22. }
  23. partition cfgfs {
  24. partition-type-uuid = 44479540-f297-41b2-9af7-d131d5f0458a
  25. image = "cfgfs.img"
  26. }
  27. }