genimage-prod.cfg 960 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. config {
  2. }
  3. image sdcard-prod.img {
  4. hdimage {
  5. }
  6. partition u-boot {
  7. in-partition-table = "no"
  8. image = "Recovery/output/images/u-boot-sunxi-with-spl.bin"
  9. offset = 8K
  10. size = 536K # 544KB - 8KB
  11. }
  12. partition u-boot-env {
  13. in-partition-table = "no"
  14. offset = 544K
  15. size = 128K
  16. image = "Recovery/output/images/u-boot-env-prod.img"
  17. }
  18. partition Recovery {
  19. offset = 1M
  20. partition-type = 0x83
  21. image = "Recovery/output/images/rootfs.ext4"
  22. size = 100M
  23. }
  24. partition FunKey {
  25. offset = 101M
  26. partition-type = 0x83
  27. bootable = "yes"
  28. image = "FunKey/output/images/rootfs.ext4"
  29. size = 220M # This will be resized to 1G during first boot
  30. }
  31. # These partitions will be created during first boot
  32. # partition swap {
  33. # offset = 1.01G
  34. # partition-type = 0xC
  35. # bootable = "false"
  36. # size = 128M
  37. # }
  38. #
  39. # partition share {
  40. # offset = 1.138G
  41. # partition-type = 0xC
  42. # bootable = "false"
  43. # size = 0 # Fill in the disk up to its full size
  44. # }
  45. }