genimage.cfg 349 B

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