genimage.cfg 320 B

123456789101112131415161718192021222324252627
  1. image boot.vfat {
  2. vfat {
  3. files = {
  4. "boot.ini",
  5. "Image",
  6. "meson64_odroidc2.dtb"
  7. }
  8. }
  9. size = 32M
  10. }
  11. image sdcard.img {
  12. hdimage {
  13. }
  14. partition vfat {
  15. partition-type = 0xC
  16. image = "boot.vfat"
  17. offset = 1048576
  18. }
  19. partition rootfs {
  20. partition-type = 0x83
  21. image = "rootfs.ext4"
  22. size = 512M
  23. }
  24. }