diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2013-02-13 16:51:24 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2013-02-13 16:51:24 +0000 |
commit | c75c1e03a3a73b896a2e061f47e6390c44fc6f7b (patch) | |
tree | 7eb70368e56898ee567804212f61dae95f10580b /tools/firmware-utils/src | |
parent | 9d86ba2ed43106fff4ec0217711246aa325e0854 (diff) | |
download | upstream-c75c1e03a3a73b896a2e061f47e6390c44fc6f7b.tar.gz upstream-c75c1e03a3a73b896a2e061f47e6390c44fc6f7b.tar.bz2 upstream-c75c1e03a3a73b896a2e061f47e6390c44fc6f7b.zip |
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/src')
-rw-r--r-- | tools/firmware-utils/src/mktplinkfw.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tools/firmware-utils/src/mktplinkfw.c b/tools/firmware-utils/src/mktplinkfw.c index f8f162002b..32466e2499 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, |