genimage.cfg 567 B

1234567891011121314151617181920212223242526272829303132333435
  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. "at91-sama5d4_xplained_hdmi.dtb",
  9. "at91-sama5d4_xplained_pda4.dtb",
  10. "at91-sama5d4_xplained_pda7.dtb",
  11. "at91-sama5d4_xplained_pda7b.dtb",
  12. "boot.bin",
  13. "u-boot.bin"
  14. }
  15. }
  16. size = 16M
  17. }
  18. image sdcard.img {
  19. hdimage {
  20. }
  21. partition boot {
  22. partition-type = 0xC
  23. bootable = "true"
  24. image = "boot.vfat"
  25. offset = 1M
  26. }
  27. partition rootfs {
  28. partition-type = 0x83
  29. image = "rootfs.ext4"
  30. size = 512M
  31. }
  32. }