genimage.cfg 511 B

1234567891011121314151617181920212223242526272829303132333435
  1. # Minimal SD card image for the Acmesystems Arietta G25
  2. image boot.vfat {
  3. vfat {
  4. file zImage {
  5. image = "zImage"
  6. }
  7. file acme-arietta.dtb {
  8. image = "at91-ariettag25.dtb"
  9. }
  10. file boot.bin {
  11. image = "at91sam9x5_arietta-sdcardboot-linux-zimage-dt-3.8.13.bin"
  12. }
  13. }
  14. size = 16M
  15. }
  16. image sdcard.img {
  17. hdimage {
  18. }
  19. partition boot {
  20. partition-type = 0xC
  21. bootable = "true"
  22. image = "boot.vfat"
  23. }
  24. partition rootfs {
  25. partition-type = 0x83
  26. image = "rootfs.ext4"
  27. size = 512M
  28. }
  29. }