diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2022-12-26 15:55:43 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2022-12-26 15:55:43 +0100 |
commit | db810aae8bbb0c81059e95e5244a860ae59f16e7 (patch) | |
tree | b99977f43fe9795234a85b561ad787c7f6eb616b /target/aarch64 | |
parent | 134df1932fdb77a54029d8e1028d27a00f911db9 (diff) |
forgot the dual config for genimage
Diffstat (limited to 'target/aarch64')
-rw-r--r-- | target/aarch64/rockpi4-plus/genimage-dual.cfg | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/target/aarch64/rockpi4-plus/genimage-dual.cfg b/target/aarch64/rockpi4-plus/genimage-dual.cfg new file mode 100644 index 000000000..27f9a797e --- /dev/null +++ b/target/aarch64/rockpi4-plus/genimage-dual.cfg @@ -0,0 +1,34 @@ +image sdcard.img { + hdimage { + } + + partition loader1 { + in-partition-table = "no" + image = "idbloader.img" + offset = 32K + } + + partition loader2 { + in-partition-table = "no" + image = "u-boot.itb" + offset = 8M + } + + partition root1 { + partition-type = 0x83 + bootable = "true" + image = "rootfs1.ext" + size = 64M + } + + partition root2 { + partition-type = 0x83 + image = "rootfs2.ext" + size = 64M + } + + partition cfgfs { + partition-type = 0x88 + image = "cfgfs.img" + } +} |