genimage.cfg 519 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. image boot.vfat {
  2. vfat {
  3. files = {
  4. "Image",
  5. "sun50i-a64-bananapi-m64.dtb",
  6. "boot.scr"
  7. }
  8. }
  9. size = 64M
  10. }
  11. image sdcard.img {
  12. hdimage {
  13. }
  14. partition spl {
  15. in-partition-table = "no"
  16. image = "sunxi-spl.bin"
  17. offset = 8192
  18. }
  19. partition u-boot {
  20. in-partition-table = "no"
  21. image = "u-boot.itb"
  22. offset = 40K
  23. size = 1M # 1MB - 40K
  24. }
  25. partition boot {
  26. partition-type = 0xC
  27. bootable = "true"
  28. image = "boot.vfat"
  29. }
  30. partition rootfs {
  31. partition-type = 0x83
  32. image = "rootfs.ext4"
  33. }
  34. }