genimage.cfg 492 B

123456789101112131415161718192021222324252627282930313233
  1. # Create an image of the efi partition
  2. image efi-part.vfat {
  3. vfat {
  4. file EFI {
  5. image = "efi-part/EFI"
  6. }
  7. file bzImage {
  8. image = "bzImage"
  9. }
  10. }
  11. size=10M
  12. }
  13. # Create the sdcard image, pulling in
  14. # * the image created by buildroot
  15. # * the efi-partition created above
  16. image sdcard.img {
  17. hdimage {
  18. gpt = true
  19. }
  20. partition boot {
  21. partition-type-uuid = U
  22. image = "efi-part.vfat"
  23. }
  24. partition rootfs {
  25. partition-type-uuid = L
  26. image = "rootfs.ext4"
  27. size = 512M
  28. }
  29. }