diff options
author | John Crispin <john@openwrt.org> | 2013-08-06 12:31:06 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2013-08-06 12:31:06 +0000 |
commit | eb844ad32107bbbe8c7087d5edb8cbf6cbbad109 (patch) | |
tree | df0af55c25a1028a2497d54c846ba46f05542f2d /tools/firmware-utils | |
parent | 85cb2c4f9e94da177ba68ff667475ea0594c04b3 (diff) | |
download | upstream-eb844ad32107bbbe8c7087d5edb8cbf6cbbad109.tar.gz upstream-eb844ad32107bbbe8c7087d5edb8cbf6cbbad109.tar.bz2 upstream-eb844ad32107bbbe8c7087d5edb8cbf6cbbad109.zip |
firmware-utils: add support for TDW8970 to mktplinkfw
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 37718
Diffstat (limited to 'tools/firmware-utils')
-rw-r--r-- | tools/firmware-utils/src/mktplinkfw.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tools/firmware-utils/src/mktplinkfw.c b/tools/firmware-utils/src/mktplinkfw.c index ea2dccbd6b..05e40c5daf 100644 --- a/tools/firmware-utils/src/mktplinkfw.c +++ b/tools/firmware-utils/src/mktplinkfw.c @@ -62,6 +62,7 @@ #define HWID_TL_WR1043ND_V1 0x10430001 #define HWID_TL_WR1041N_V2 0x10410002 #define HWID_TL_WR2543N_V1 0x25430001 +#define HWID_TD_W8970_V1 0x89700001 #define MD5SUM_LEN 16 @@ -209,6 +210,12 @@ static struct flash_layout layouts[] = { .kernel_ep = 0x80060000, .rootfs_ofs = 0x100000, }, { + .id = "8Mltq", + .fw_max_len = 0x7a0000, + .kernel_la = 0x80002000, + .kernel_ep = 0x80002000, + .rootfs_ofs = 0x140000, + }, { .id = "16Mppc", .fw_max_len = 0xf80000, .kernel_la = 0x00000000, @@ -376,6 +383,12 @@ static struct board_info boards[] = { .hw_rev = 1, .layout_id = "4Mlzma", }, { + .id = "TD-W8970v1", + .hw_id = HWID_TD_W8970_V1, + .hw_rev = 1, + .layout_id = "8Mltq", + .hdr_version = HEADER_VERSION_V2 + }, { /* terminating entry */ } }; |