genimage.cfg 308 B

123456789101112131415161718192021222324252627
  1. image boot.vfat {
  2. vfat {
  3. files = {
  4. "tiboot3.bin",
  5. "tispl.bin",
  6. "u-boot.img",
  7. }
  8. }
  9. size = 16M
  10. }
  11. image sdcard.img {
  12. hdimage {
  13. }
  14. partition u-boot {
  15. partition-type = 0xC
  16. bootable = "true"
  17. image = "boot.vfat"
  18. }
  19. partition rootfs {
  20. partition-type = 0x83
  21. image = "rootfs.ext4"
  22. }
  23. }