genimage-efi.cfg 610 B

1234567891011121314151617181920212223242526272829303132333435
  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. size = 16777216
  14. }
  15. image disk.img {
  16. hdimage {
  17. gpt = true
  18. }
  19. partition boot {
  20. image = "efi-part.vfat"
  21. partition-type-uuid = c12a7328-f81f-11d2-ba4b-00a0c93ec93b
  22. offset = 32768
  23. size = 16777216
  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. offset = 16809984
  31. }
  32. }