genimage.cfg 441 B

12345678910111213141516171819202122232425262728293031323334
  1. image boot.vfat {
  2. vfat {
  3. files = {
  4. "zImage",
  5. "sun8i-s3-pinecube.dtb",
  6. "extlinux"
  7. }
  8. }
  9. size = 8M
  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 = 8K
  18. size = 504K # 512KB - 8KB
  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. }