genimage.cfg 525 B

1234567891011121314151617181920212223242526272829
  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. size = 60M
  24. }
  25. }