genimage.cfg 359 B

123456789101112131415161718192021222324252627282930
  1. image boot.vfat {
  2. vfat {
  3. files = {
  4. "boot.bin",
  5. "system.dtb",
  6. "Image"
  7. }
  8. file extlinux/extlinux.conf {
  9. image = extlinux.conf
  10. }
  11. }
  12. size = 32M
  13. }
  14. image sdcard.img {
  15. hdimage {
  16. }
  17. partition boot {
  18. partition-type = 0xC
  19. bootable = "true"
  20. image = "boot.vfat"
  21. }
  22. partition rootfs {
  23. partition-type = 0x83
  24. image = "rootfs.ext4"
  25. }
  26. }