genimage.cfg 418 B

12345678910111213141516171819202122232425262728293031
  1. # Image for SD card boot on Atmel SAMA5D4 Xplained boards
  2. #
  3. image boot.vfat {
  4. vfat {
  5. files = {
  6. "zImage",
  7. "at91-sama5d4_xplained.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. }