genimage.cfg 441 B

1234567891011121314151617181920212223242526272829303132
  1. # Image for SD card boot on Microchip SAMA5D2 ICP (Industrial Connectivity Platform)
  2. #
  3. image boot.vfat {
  4. vfat {
  5. files = {
  6. "zImage",
  7. "at91-sama5d2_icp.dtb",
  8. "boot.bin",
  9. "u-boot.bin"
  10. }
  11. }
  12. size = 16M
  13. }
  14. image sdcard.img {
  15. hdimage {
  16. }
  17. partition boot {
  18. partition-type = 0xC
  19. bootable = "true"
  20. image = "boot.vfat"
  21. offset = 1M
  22. }
  23. partition rootfs {
  24. partition-type = 0x83
  25. image = "rootfs.ext4"
  26. size = 512M
  27. }
  28. }