genimage.cfg 395 B

123456789101112131415161718192021222324252627282930
  1. image boot.vfat {
  2. vfat {
  3. files = {
  4. "BOOT.BIN",
  5. "uEnv.txt",
  6. "system.bit",
  7. "zynq-zybo.dtb",
  8. "u-boot-dtb.img",
  9. "uImage"
  10. }
  11. }
  12. size = 32M
  13. }
  14. image sdcard.img {
  15. hdimage {
  16. }
  17. partition boot {
  18. partition-type = 0xC
  19. bootable = "true"
  20. image = "boot.vfat"
  21. }
  22. partition rootfs {
  23. partition-type = 0x83
  24. image = "rootfs.ext4"
  25. }
  26. }