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

42 lines
555 B
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 {
}
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 = 504K # 512KB - 8KB
2018-02-25 19:07:30 +00:00
}
2020-05-09 22:49:37 +01:00
# partition u-boot-env {
# in-partition-table = "no"
# offset = 544K
# size = 128K
# }
2018-02-25 19:07:30 +00:00
partition boot {
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 rootfs {
partition-type = 0x83
image = "rootfs.ext4"
size = 0
2018-02-25 19:07:30 +00:00
}
}