genimage-efi.cfg 366 B

123456789101112131415161718192021222324252627282930
  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. }
  12. partition boot {
  13. partition-type = 0xEF
  14. image = "efi-part.vfat"
  15. }
  16. partition root {
  17. partition-type = 0x83
  18. image = "rootfs.ext"
  19. }
  20. partition cfgfs {
  21. partition-type = 0x88
  22. image = "cfgfs.img"
  23. }
  24. }