summaryrefslogtreecommitdiff
path: root/tools/firmware-utils
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2013-02-13 16:51:24 +0000
committerGabor Juhos <juhosg@openwrt.org>2013-02-13 16:51:24 +0000
commitc75c1e03a3a73b896a2e061f47e6390c44fc6f7b (patch)
tree7eb70368e56898ee567804212f61dae95f10580b /tools/firmware-utils
parent9d86ba2ed43106fff4ec0217711246aa325e0854 (diff)
downloadmtk-20170518-c75c1e03a3a73b896a2e061f47e6390c44fc6f7b.zip
mtk-20170518-c75c1e03a3a73b896a2e061f47e6390c44fc6f7b.tar.gz
mtk-20170518-c75c1e03a3a73b896a2e061f47e6390c44fc6f7b.tar.bz2
firmware-utils/mktplinkfw: add support for the TL-WDR4900 v1
Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 35593
Diffstat (limited to 'tools/firmware-utils')
-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 f8f1620..32466e2 100644
--- a/tools/firmware-utils/src/mktplinkfw.c
+++ b/tools/firmware-utils/src/mktplinkfw.c
@@ -39,6 +39,7 @@
#define HWID_TL_WA801ND_V1 0x08010001
#define HWID_TL_WA901ND_V1 0x09010001
#define HWID_TL_WA901ND_V2 0x09010002
+#define HWID_TL_WDR4900_V1 0x49000001
#define HWID_TL_WR703N_V1 0x07030101
#define HWID_TL_WR741ND_V1 0x07410001
#define HWID_TL_WR741ND_V4 0x07410004
@@ -176,6 +177,12 @@ static struct flash_layout layouts[] = {
.kernel_ep = 0x80060000,
.rootfs_ofs = 0x100000,
}, {
+ .id = "16Mppc",
+ .fw_max_len = 0xf80000,
+ .kernel_la = 0x00000000,
+ .kernel_ep = 0xc0000000,
+ .rootfs_ofs = 0x2a0000,
+ }, {
/* terminating entry */
}
};
@@ -227,6 +234,11 @@ static struct board_info boards[] = {
.hw_rev = 1,
.layout_id = "4M",
}, {
+ .id = "TL-WDR4900v1",
+ .hw_id = HWID_TL_WDR4900_V1,
+ .hw_rev = 1,
+ .layout_id = "16Mppc",
+ }, {
.id = "TL-WR741NDv1",
.hw_id = HWID_TL_WR741ND_V1,
.hw_rev = 1,