genimage.cfg 490 B

1234567891011121314151617181920212223
  1. image sdcard.img {
  2. hdimage {
  3. }
  4. partition uboot-spl {
  5. in-partition-table = "no"
  6. image = "u-boot-tpl-spl.img"
  7. offset = 32768 # 512 * 0x40 from start of sd card
  8. }
  9. partition uboot {
  10. in-partition-table = "no"
  11. image = "u-boot.itb"
  12. offset = 262144 # 512 * 0x200 from start of sd card
  13. }
  14. partition rootfs {
  15. partition-type = 0x83
  16. bootable = "yes"
  17. image = "rootfs.ext2"
  18. size = 500M
  19. }
  20. }