genimage.cfg 530 B

12345678910111213141516171819202122232425262728293031323334
  1. # Image for SD card boot on Atmel SAMA5D2 Xplained boards
  2. #
  3. image boot.vfat {
  4. vfat {
  5. files = {
  6. "zImage",
  7. "at91-sama5d2_xplained.dtb",
  8. "at91-sama5d2_xplained_pda4.dtb",
  9. "at91-sama5d2_xplained_pda7.dtb",
  10. "at91-sama5d2_xplained_pda7b.dtb",
  11. "boot.bin",
  12. "u-boot.bin"
  13. }
  14. }
  15. size = 16M
  16. }
  17. image sdcard.img {
  18. hdimage {
  19. }
  20. partition boot {
  21. partition-type = 0xC
  22. bootable = "true"
  23. image = "boot.vfat"
  24. offset = 1M
  25. }
  26. partition rootfs {
  27. partition-type = 0x83
  28. image = "rootfs.ext4"
  29. size = 512M
  30. }
  31. }