genimage.cfg 901 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. image sdcard.img {
  2. hdimage {
  3. gpt = true
  4. gpt-location = 800K
  5. }
  6. # partition gpt-header {
  7. # in-partition-table = "no"
  8. # offset = 1K
  9. # size = 512
  10. # }
  11. partition u-boot {
  12. in-partition-table = "no"
  13. image = "Recovery/output/images/u-boot-sunxi-with-spl.bin"
  14. offset = 8K
  15. size = 536K # 544KB - 8KB
  16. }
  17. partition u-boot-env {
  18. in-partition-table = "no"
  19. offset = 544K
  20. size = 128K
  21. image = "FunKey/output/images/u-boot-env.img"
  22. }
  23. # partition gpt-table {
  24. # in-partition-table = "no"
  25. # offset = 800K
  26. # size = 16K
  27. # }
  28. partition Recovery {
  29. offset = 1M
  30. partition-type = 0x83
  31. image = "Recovery/output/images/rootfs.ext4"
  32. size = 100M
  33. }
  34. partition FunKey {
  35. offset = 101M
  36. partition-type = 0x83
  37. bootable = "yes"
  38. image = "FunKey/output/images/rootfs.ext4"
  39. size = 100M
  40. }
  41. # partition share {
  42. # offset = 1G
  43. # partition-type = 0xC
  44. # bootable = "false"
  45. # size = 0
  46. # }
  47. }