From: John Crispin Date: Fri, 12 Feb 2016 08:30:28 +0000 (+0000) Subject: ar71xx: Added support for TL-WA801NDv3 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=f6d96c5962330ca7ed7368324e909545471babcd;p=project%2Ffirmware-utils.git ar71xx: Added support for TL-WA801NDv3 Signed-off-by: Tiziano Bacocco SVN-Revision: 48705 --- diff --git a/src/mktplinkfw.c b/src/mktplinkfw.c index 085eb4c..9fd5e38 100644 --- a/src/mktplinkfw.c +++ b/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; } -