diff options
| author | David Bauer | 2018-12-31 15:24:24 +0000 |
|---|---|---|
| committer | Mathias Kresin | 2019-01-26 20:46:32 +0000 |
| commit | 36a091cb076dda891e3b41ae3080f858f88697c3 (patch) | |
| tree | a9f0396288259adedd0eae1dbd4db215e3093970 | |
| parent | 53cc74bfa720980f9e0cc3868d3457820f7c202e (diff) | |
| download | openwrt-36a091cb076dda891e3b41ae3080f858f88697c3.tar.gz | |
tools: mktplinkfw2: add split-uboot layout
This commit adds the split-uboot partition layout used by the
Archer C50 v4 to mktplinkfw2.
Signed-off-by: David Bauer <mail@david-bauer.net>
| -rw-r--r-- | tools/firmware-utils/src/mktplinkfw2.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/firmware-utils/src/mktplinkfw2.c b/tools/firmware-utils/src/mktplinkfw2.c index dead49e7af..35db848bba 100644 --- a/tools/firmware-utils/src/mktplinkfw2.c +++ b/tools/firmware-utils/src/mktplinkfw2.c @@ -147,6 +147,12 @@ static struct flash_layout layouts[] = { .kernel_ep = 0x80000000, .rootfs_ofs = 0x140000, }, { + .id = "8MSUmtk", /* Split U-Boot OS */ + .fw_max_len = 0x770000, + .kernel_la = 0x80000000, + .kernel_ep = 0x80000000, + .rootfs_ofs = 0x140000, + }, { .id = "8MLmtk", .fw_max_len = 0x7b0000, .kernel_la = 0x80000000, |