diff options
author | John Crispin <john@openwrt.org> | 2016-02-12 08:30:28 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2016-02-12 08:30:28 +0000 |
commit | d6cb792d21273c7aa101dbfa1072534f35cabf96 (patch) | |
tree | 03d0d8223fce571742f4e281b4e1f1fd3aa4e73c /tools/firmware-utils | |
parent | 8c7aa9b6e13f45fc0e78452b3a3e40ff2be8d700 (diff) | |
download | upstream-d6cb792d21273c7aa101dbfa1072534f35cabf96.tar.gz upstream-d6cb792d21273c7aa101dbfa1072534f35cabf96.tar.bz2 upstream-d6cb792d21273c7aa101dbfa1072534f35cabf96.zip |
ar71xx: Added support for TL-WA801NDv3
Signed-off-by: Tiziano Bacocco <tizbac2@gmail.com>
SVN-Revision: 48705
Diffstat (limited to 'tools/firmware-utils')
-rw-r--r-- | tools/firmware-utils/src/mktplinkfw.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tools/firmware-utils/src/mktplinkfw.c b/tools/firmware-utils/src/mktplinkfw.c index 085eb4c39d..9fd5e3830a 100644 --- a/tools/firmware-utils/src/mktplinkfw.c +++ b/tools/firmware-utils/src/mktplinkfw.c @@ -51,6 +51,7 @@ #define HWID_TL_WA830RE_V1 0x08300010 #define HWID_TL_WA830RE_V2 0x08300002 #define HWID_TL_WA801ND_V2 0x08010002 +#define HWID_TL_WA801ND_V3 0x08010003 #define HWID_TL_WA901ND_V1 0x09010001 #define HWID_TL_WA901ND_V2 0x09010002 #define HWID_TL_WDR4300_V1_IL 0x43008001 @@ -298,6 +299,11 @@ static struct board_info boards[] = { .hw_id = HWID_TL_WA801ND_V2, .hw_rev = 1, .layout_id = "4Mlzma", + },{ + .id = "TL-WA801NDv3", + .hw_id = HWID_TL_WA801ND_V3, + .hw_rev = 1, + .layout_id = "4Mlzma", }, { .id = "TL-WA901NDv1", .hw_id = HWID_TL_WA901ND_V1, @@ -1219,4 +1225,3 @@ int main(int argc, char *argv[]) out: return ret; } - |