genimage.cfg 458 B

123456789101112131415161718192021222324252627282930313233
  1. image boot.vfat {
  2. vfat {
  3. files = {
  4. "zImage",
  5. "sun8i-h2-plus-bananapi-m2-zero.dtb",
  6. "boot.scr"
  7. }
  8. }
  9. size = 64M
  10. }
  11. image sdcard.img {
  12. hdimage {
  13. }
  14. partition u-boot {
  15. in-partition-table = "no"
  16. image = "u-boot-sunxi-with-spl.bin"
  17. offset = 8192
  18. size = 1040384 # 1MB - 8192
  19. }
  20. partition boot {
  21. partition-type = 0xC
  22. bootable = "true"
  23. image = "boot.vfat"
  24. }
  25. partition rootfs {
  26. partition-type = 0x83
  27. image = "rootfs.ext4"
  28. }
  29. }