aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2012-01-07 19:36:40 +0000
committerGabor Juhos <juhosg@openwrt.org>2012-01-07 19:36:40 +0000
commit8a8e5bde15076bee23de0283154cd2aea9129021 (patch)
tree3deb5665f7f04d1b14f1fb52c8f8623eb0248227 /tools
parenta1dcbc66a639d0f16e8cafb837099f156e018741 (diff)
downloadupstream-8a8e5bde15076bee23de0283154cd2aea9129021.tar.gz
upstream-8a8e5bde15076bee23de0283154cd2aea9129021.tar.bz2
upstream-8a8e5bde15076bee23de0283154cd2aea9129021.zip
firware-utils/mktplinkfw: add TL-WR2543N/ND support
SVN-Revision: 29681
Diffstat (limited to 'tools')
-rw-r--r--tools/firmware-utils/src/mktplinkfw.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/tools/firmware-utils/src/mktplinkfw.c b/tools/firmware-utils/src/mktplinkfw.c
index d2696af3f8..f8fa2f14b4 100644
--- a/tools/firmware-utils/src/mktplinkfw.c
+++ b/tools/firmware-utils/src/mktplinkfw.c
@@ -49,6 +49,7 @@
#define HWID_TL_WR941ND_V2 0x09410002
#define HWID_TL_WR941ND_V4 0x09410004
#define HWID_TL_WR1043ND_V1 0x10430001
+#define HWID_TL_WR2543N_V1 0x25430001
#define MD5SUM_LEN 16
@@ -157,6 +158,12 @@ static struct flash_layout layouts[] = {
.kernel_ep = 0x80060000,
.rootfs_ofs = 0x140000,
}, {
+ .id = "8Mlzma",
+ .fw_max_len = 0x7c0000,
+ .kernel_la = 0x80060000,
+ .kernel_ep = 0x80060000,
+ .rootfs_ofs = 0x100000,
+ }, {
/* terminating entry */
}
};
@@ -253,6 +260,11 @@ static struct board_info boards[] = {
.hw_rev = 1,
.layout_id = "8M",
}, {
+ .id = "TL-WR2543Nv1",
+ .hw_id = HWID_TL_WR2543N_V1,
+ .hw_rev = 1,
+ .layout_id = "8Mlzma",
+ }, {
.id = "TL-WR703Nv1",
.hw_id = HWID_TL_WR703N_V1,
.hw_rev = 1,