genimage.cfg 362 B

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