genimage.cfg 506 B

12345678910111213141516171819202122232425262728
  1. image sdcard.img {
  2. hdimage {
  3. }
  4. partition uboot-spl {
  5. in-partition-table = "no"
  6. image = "u-boot-spl.bin"
  7. offset = 512
  8. }
  9. partition uboot {
  10. in-partition-table = "no"
  11. image = "u-boot.img"
  12. offset = 14k
  13. }
  14. partition uboot-env {
  15. in-partition-table = "no"
  16. image = "uboot-env.bin"
  17. offset = 526k
  18. }
  19. partition rootfs {
  20. partition-type = 0x83
  21. image = "rootfs.ext4"
  22. offset = 2M
  23. }
  24. }