genimage-efi.cfg 671 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. image efi-part.vfat {
  2. vfat {
  3. file EFI {
  4. image = "efi-part/EFI"
  5. }
  6. file grub-mender-grubenv {
  7. image = "efi-part/grub-mender-grubenv"
  8. }
  9. file bzImage {
  10. image = "bzImage"
  11. }
  12. }
  13. size = 16M
  14. }
  15. image disk.img {
  16. hdimage {
  17. partition-table-type = "gpt"
  18. }
  19. partition boot {
  20. partition-type-uuid = U
  21. offset = 32K
  22. image = "efi-part.vfat"
  23. bootable = true
  24. }
  25. partition roota {
  26. partition-type-uuid = 4F68BCE3-E8CD-4DB1-96E7-FBCAF984B709
  27. image = "rootfs.ext2"
  28. }
  29. partition rootb {
  30. partition-type-uuid = 4F68BCE3-E8CD-4DB1-96E7-FBCAF984B709
  31. image = "rootfs.ext2"
  32. }
  33. partition data {
  34. partition-type-uuid = L
  35. image = "data-part.ext4"
  36. }
  37. }