genimage.cfg 485 B

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