genimage.cfg 553 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. # Image for SD card boot on Atmel at91sam9x5ek boards
  2. #
  3. image boot.vfat {
  4. vfat {
  5. files = {
  6. "zImage",
  7. "at91sam9g15ek.dtb",
  8. "at91sam9g25ek.dtb",
  9. "at91sam9g35ek.dtb",
  10. "at91sam9x25ek.dtb",
  11. "at91sam9x35ek.dtb",
  12. "boot.bin",
  13. "u-boot.bin"
  14. }
  15. file uboot.env {
  16. image = "uboot-env.bin"
  17. }
  18. }
  19. size = 16M
  20. }
  21. image sdcard.img {
  22. hdimage {
  23. }
  24. partition boot {
  25. partition-type = 0xC
  26. bootable = "true"
  27. image = "boot.vfat"
  28. offset = 1M
  29. }
  30. partition rootfs {
  31. partition-type = 0x83
  32. image = "rootfs.ext4"
  33. size = 512M
  34. }
  35. }