diff options
author | John Crispin <john@openwrt.org> | 2015-06-18 18:21:23 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2015-06-18 18:21:23 +0000 |
commit | e85f3471bad00a51711e7d7c7ab84e4ba64c1b93 (patch) | |
tree | 4ee2bf6587ffc618a167a9b55ca97eeb7cf4eb64 /tools/firmware-utils/src | |
parent | 8399be545a01b05549902a96778b9b3983a6b4ec (diff) | |
download | upstream-e85f3471bad00a51711e7d7c7ab84e4ba64c1b93.tar.gz upstream-e85f3471bad00a51711e7d7c7ab84e4ba64c1b93.tar.bz2 upstream-e85f3471bad00a51711e7d7c7ab84e4ba64c1b93.zip |
ar71xx: add support for TL-WR720N-v4.
The hardware should be almost the same as TL-WR720N-v3. WiFi and LAN networks
were tested by "Lo Yuk Fai <loyukfai@gmail.com>". Failsafe and slider switch
were tested by "Wong min <alpha080@gmail.com>".
Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
SVN-Revision: 46046
Diffstat (limited to 'tools/firmware-utils/src')
-rw-r--r-- | tools/firmware-utils/src/mktplinkfw.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/firmware-utils/src/mktplinkfw.c b/tools/firmware-utils/src/mktplinkfw.c index 87340db240..09536c6427 100644 --- a/tools/firmware-utils/src/mktplinkfw.c +++ b/tools/firmware-utils/src/mktplinkfw.c @@ -54,6 +54,7 @@ #define HWID_TL_WDR4900_V1 0x49000001 #define HWID_TL_WR703N_V1 0x07030101 #define HWID_TL_WR720N_V3 0x07200103 +#define HWID_TL_WR720N_V4 0x07200104 #define HWID_TL_WR741ND_V1 0x07410001 #define HWID_TL_WR741ND_V4 0x07410004 #define HWID_TL_WR740N_V1 0x07400001 @@ -403,6 +404,11 @@ static struct board_info boards[] = { .hw_rev = 1, .layout_id = "4Mlzma", }, { + .id = "TL-WR720Nv4", + .hw_id = HWID_TL_WR720N_V4, + .hw_rev = 1, + .layout_id = "4Mlzma", + }, { .id = "GL-INETv1", .hw_id = HWID_GL_INET_V1, .hw_rev = 1, |