diff options
| author | Sergii Shcherbakov | 2025-01-20 19:30:02 +0000 |
|---|---|---|
| committer | Sergii Shcherbakov | 2025-01-20 19:30:02 +0000 |
| commit | 2051fe5bc2a10306f0cdd8930a1cb893e433b9f4 (patch) | |
| tree | 13e5d536a50e6cb8137c5e56c63cfba4a1f8dfdd | |
| parent | 12c0b42231bee58b3cd7cbe95c33de2685484a4f (diff) | |
| download | firmware-utils-2051fe5bc2a10306f0cdd8930a1cb893e433b9f4.tar.gz | |
mktplinkfw2: Add 16MLmtk layout
This layout is used by MERCUSYS MB130-4G which bootloader is based on
TP-Link MR200/MR400 source code, but has bigger flash.
Signed-off-by: Sergii Shcherbakov <shchers@gmail.com>
| -rw-r--r-- | src/mktplinkfw2.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mktplinkfw2.c b/src/mktplinkfw2.c index 82c83a6..1255a39 100644 --- a/src/mktplinkfw2.c +++ b/src/mktplinkfw2.c @@ -150,6 +150,12 @@ static struct flash_layout layouts[] = { .kernel_ep = 0x80000000, .rootfs_ofs = 0x140000, }, { + .id = "16MLmtk", + .fw_max_len = 0xe90000, + .kernel_la = 0x80000000, + .kernel_ep = 0x80000000, + .rootfs_ofs = 0x140000, + }, { .id = "16Mmtk", .fw_max_len = 0xfa0000, .kernel_la = 0x80000000, |