genimage.cfg 564 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. image boot.vfat {
  2. vfat {
  3. files = {
  4. "uImage",
  5. "imx6dl-icore.dtb",
  6. "imx6q-icore.dtb",
  7. "imx6q-icore-ofcap10.dtb",
  8. "imx6q-icore-ofcap12.dtb"
  9. }
  10. }
  11. size = 64M
  12. }
  13. image sdcard.img {
  14. hdimage {
  15. }
  16. partition SPL {
  17. in-partition-table = "no"
  18. image = "SPL"
  19. offset = 1024
  20. }
  21. partition u-boot-dtb {
  22. in-partition-table = "no"
  23. image = "u-boot-dtb.img"
  24. offset = 69K
  25. }
  26. partition boot {
  27. partition-type = 0xC
  28. bootable = "true"
  29. image = "boot.vfat"
  30. offset = 8M
  31. }
  32. partition rootfs {
  33. partition-type = 0x83
  34. image = "rootfs.ext2"
  35. }
  36. }