genimage.cfg 376 B

12345678910111213141516171819202122232425262728293031
  1. image boot.vfat {
  2. vfat {
  3. files = {
  4. "boot.bin",
  5. "u-boot.itb",
  6. "system.dtb",
  7. "Image"
  8. }
  9. file extlinux/extlinux.conf {
  10. image = extlinux.conf
  11. }
  12. }
  13. size = 32M
  14. }
  15. image sdcard.img {
  16. hdimage {
  17. }
  18. partition 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. }