FunKey-OS/genimage.cfg

55 lines
901 B
INI
Raw Normal View History

2018-02-25 19:07:30 +00:00
image sdcard.img {
hdimage {
gpt = true
gpt-location = 800K
2018-02-25 19:07:30 +00:00
}
# partition gpt-header {
# in-partition-table = "no"
# offset = 1K
# size = 512
# }
2018-02-25 19:07:30 +00:00
partition u-boot {
in-partition-table = "no"
image = "Recovery/output/images/u-boot-sunxi-with-spl.bin"
2020-05-09 22:49:37 +01:00
offset = 8K
size = 536K # 544KB - 8KB
2018-02-25 19:07:30 +00:00
}
partition u-boot-env {
in-partition-table = "no"
offset = 544K
size = 128K
image = "FunKey/output/images/u-boot-env.img"
}
# partition gpt-table {
# in-partition-table = "no"
# offset = 800K
# size = 16K
# }
partition Recovery {
offset = 1M
partition-type = 0x83
image = "Recovery/output/images/rootfs.ext4"
size = 100M
}
partition FunKey {
offset = 101M
2018-02-25 19:07:30 +00:00
partition-type = 0x83
bootable = "yes"
image = "FunKey/output/images/rootfs.ext4"
size = 100M
2018-02-25 19:07:30 +00:00
}
# partition share {
# offset = 1G
# partition-type = 0xC
# bootable = "false"
# size = 0
# }
2018-02-25 19:07:30 +00:00
}