genimage-efi.cfg 425 B

123456789101112131415161718192021222324252627282930
  1. image efi-part.vfat {
  2. vfat {
  3. file EFI {
  4. image = "efi-part/EFI"
  5. }
  6. file Image {
  7. image = "Image"
  8. }
  9. }
  10. size = 32M
  11. }
  12. image disk.img {
  13. hdimage {
  14. gpt = true
  15. }
  16. partition boot {
  17. image = "efi-part.vfat"
  18. partition-type-uuid = c12a7328-f81f-11d2-ba4b-00a0c93ec93b
  19. offset = 32K
  20. bootable = true
  21. }
  22. partition root {
  23. partition-type-uuid = b921b045-1df0-41c3-af44-4c6f280d3fae
  24. image = "rootfs.ext2"
  25. }
  26. }