FunKey-OS/FunKey/board/funkey/genimage.cfg

77 lines
1.1 KiB
INI
Raw Normal View History

2018-02-25 19:07:30 +00:00
image boot.vfat {
vfat {
files = {
"uImage",
2019-03-22 12:58:51 +00:00
"sun8i-v3s-funkey.dtb",
2018-02-25 19:07:30 +00:00
"boot.scr"
}
}
size = 8M
}
image sdcard.img {
hdimage {
gpt = true
gpt-location = 800K # 688128 # 672K
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 = "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-env0 {
2020-05-09 22:49:37 +01:00
# in-partition-table = "no"
# offset = 544K
# size = 128K
# }
# partition u-boot-env1 {
# in-partition-table = "no"
# offset = 672K
# size = 128K
# }
# partition gpt-table {
# in-partition-table = "no"
# offset = 800K
# size = 16K
# }
partition boot0 {
2020-05-09 22:49:37 +01:00
offset = 1M
2018-02-25 19:07:30 +00:00
partition-type = 0xC
bootable = "true"
image = "boot.vfat"
}
partition boot1 {
offset = 9M
partition-type = 0xC
bootable = "true"
image = "boot.vfat"
}
partition rootfs0 {
offset = 17M
partition-type = 0x83
image = "rootfs.ext4"
size = 111M
}
partition rootfs1 {
offset = 128M
2018-02-25 19:07:30 +00:00
partition-type = 0x83
image = "rootfs.ext4"
size = 128M
2018-02-25 19:07:30 +00:00
}
}