genimage.cfg 435 B

1234567891011121314151617181920212223242526272829
  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. }
  8. size = 512K
  9. }
  10. # Create the sdcard image, pulling in
  11. # * the image created by buildroot
  12. # * the efi-partition created above
  13. image sdcard.img {
  14. hdimage {
  15. }
  16. partition boot {
  17. partition-type = 0xC
  18. image = "efi-part.vfat"
  19. }
  20. partition rootfs {
  21. partition-type = 0x83
  22. image = "rootfs.ext2"
  23. size = 512M
  24. }
  25. }