diff options
author | Henryk Heisig <hyniu@o2.pl> | 2016-09-24 21:41:43 +0200 |
---|---|---|
committer | John Crispin <john@phrozen.org> | 2016-12-22 15:03:30 +0100 |
commit | c8043137bbd323b1490ae8613eab915ba9c138ee (patch) | |
tree | 6ebd7b34943ad84fe7df3a008a03a319ccdf197c /tools/firmware-utils | |
parent | 190ee7d86b450083fea4236d588d0d88a50e1311 (diff) | |
download | upstream-c8043137bbd323b1490ae8613eab915ba9c138ee.tar.gz upstream-c8043137bbd323b1490ae8613eab915ba9c138ee.tar.bz2 upstream-c8043137bbd323b1490ae8613eab915ba9c138ee.zip |
ramips: Add support to TP-Link Archer MR200
CPU: MT7620N 580MHz
Flash: 8MB
RAM: 64MB
build-in modem 3G/4G
four ethernet port 10/100Mbps
Signed-off-by: Henryk Heisig <hyniu@o2.pl>
Diffstat (limited to 'tools/firmware-utils')
-rw-r--r-- | tools/firmware-utils/src/mktplinkfw2.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tools/firmware-utils/src/mktplinkfw2.c b/tools/firmware-utils/src/mktplinkfw2.c index 213e6729a4..3ab5c52ec2 100644 --- a/tools/firmware-utils/src/mktplinkfw2.c +++ b/tools/firmware-utils/src/mktplinkfw2.c @@ -156,6 +156,12 @@ static struct flash_layout layouts[] = { .kernel_ep = 0x80000000, .rootfs_ofs = 0x140000, }, { + .id = "8MLmtk", + .fw_max_len = 0x7b0000, + .kernel_la = 0x80000000, + .kernel_ep = 0x80000000, + .rootfs_ofs = 0x140000, + }, { /* terminating entry */ } }; @@ -192,6 +198,13 @@ static struct board_info boards[] = { .hdr_ver = 3, .endian_swap = true, }, { + .id = "ArcherMR200", + .hw_id = 0xd7500001, + .hw_rev = 0x4a, + .layout_id = "8MLmtk", + .hdr_ver = 3, + .endian_swap = true, + }, { /* terminating entry */ } }; |