genimage-efi.cfg 584 B

12345678910111213141516171819202122232425262728293031323334
  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 bzImage {
  10. image = "bzImage"
  11. }
  12. }
  13. # 16MB - 32KB
  14. size = 16744448
  15. }
  16. image disk.img {
  17. hdimage {
  18. gpt = true
  19. }
  20. partition boot {
  21. image = "efi-part.vfat"
  22. partition-type-uuid = c12a7328-f81f-11d2-ba4b-00a0c93ec93b
  23. offset = 32768
  24. bootable = true
  25. }
  26. partition root {
  27. partition-type-uuid = 44479540-f297-41b2-9af7-d131d5f0458a
  28. partition-uuid = UUID_TMP
  29. image = "rootfs.ext2"
  30. }
  31. }