genimage-efi.cfg 402 B

123456789101112131415161718192021222324252627282930
  1. image efi-part.vfat {
  2. vfat {
  3. file startup.nsh {
  4. image = "efi-part/startup.nsh"
  5. }
  6. file EFI {
  7. image = "efi-part/EFI"
  8. }
  9. file Image {
  10. image = "Image"
  11. }
  12. }
  13. size = 32M
  14. }
  15. image disk.img {
  16. hdimage {
  17. }
  18. partition boot {
  19. partition-type = 0xEF
  20. image = "efi-part.vfat"
  21. }
  22. partition root {
  23. partition-type = 0x83
  24. image = "rootfs.ext2"
  25. }
  26. }