genimage-efi.cfg 447 B

12345678910111213141516171819202122232425262728293031
  1. image efi-part.vfat {
  2. vfat {
  3. file EFI {
  4. image = "efi-part/EFI"
  5. }
  6. file kernel {
  7. image = "kernel"
  8. }
  9. }
  10. size = 32M
  11. }
  12. image disk.img {
  13. hdimage {
  14. partition-table-type = "gpt"
  15. }
  16. partition boot {
  17. image = "efi-part.vfat"
  18. partition-type-uuid = U
  19. offset = 32K
  20. bootable = true
  21. }
  22. partition root {
  23. partition-type-uuid = 44479540-f297-41b2-9af7-d131d5f0458a
  24. image = "rootfs.ext"
  25. }
  26. }