genimage.cfg 366 B

1234567891011121314151617181920212223242526272829
  1. # Minimal SD card image for the Acme Systems Acqua A5
  2. image boot.vfat {
  3. vfat {
  4. files = {
  5. "boot.bin",
  6. "zImage",
  7. "at91-sama5d3_acqua.dtb"
  8. }
  9. }
  10. size = 16M
  11. }
  12. image sdcard.img {
  13. hdimage {
  14. }
  15. partition boot {
  16. partition-type = 0xC
  17. bootable = "true"
  18. image = "boot.vfat"
  19. }
  20. partition rootfs {
  21. partition-type = 0x83
  22. image = "rootfs.ext4"
  23. }
  24. }