From 5192cf9063d669b23a3d1ede532d85af365eb073 Mon Sep 17 00:00:00 2001 From: Damien Zammit Date: Thu, 25 Jul 2024 14:21:17 +1000 Subject: [PATCH] mktplinkfw2: Add 16Mmtk layout This supports eg, TP-Link Archer MR200 v6 Signed-off-by: Damien Zammit Link: https://github.com/openwrt/firmware-utils/pull/34 Signed-off-by: Christian Marangi --- src/mktplinkfw2.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/mktplinkfw2.c b/src/mktplinkfw2.c index e00e13c..82c83a6 100644 --- a/src/mktplinkfw2.c +++ b/src/mktplinkfw2.c @@ -149,6 +149,12 @@ static struct flash_layout layouts[] = { .kernel_la = 0x80000000, .kernel_ep = 0x80000000, .rootfs_ofs = 0x140000, + }, { + .id = "16Mmtk", + .fw_max_len = 0xfa0000, + .kernel_la = 0x80000000, + .kernel_ep = 0x80000000, + .rootfs_ofs = 0x140000, }, { .id = "8MSUmtk", /* Split U-Boot OS */ .fw_max_len = 0x770000, -- 2.30.2