From: Gabor Juhos Date: Mon, 25 Feb 2013 20:37:32 +0000 (+0000) Subject: firmware-utils/mktplinkfw: add support for the TL-WA830RE v1/v2 boards X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;hb=653c5a4b26edec5d39eced4208f1313cf2d9417e firmware-utils/mktplinkfw: add support for the TL-WA830RE v1/v2 boards Signed-off-by: Ronald Hecht Signed-off-by: Gabor Juhos SVN-Revision: 35787 --- diff --git a/tools/firmware-utils/src/mktplinkfw.c b/tools/firmware-utils/src/mktplinkfw.c index 32466e2499..9483640f51 100644 --- a/tools/firmware-utils/src/mktplinkfw.c +++ b/tools/firmware-utils/src/mktplinkfw.c @@ -37,6 +37,8 @@ #define HWID_TL_WA701N_V1 0x07010001 #define HWID_TL_WA7510N_V1 0x75100001 #define HWID_TL_WA801ND_V1 0x08010001 +#define HWID_TL_WA830RE_V1 0x08300010 +#define HWID_TL_WA830RE_V2 0x08300002 #define HWID_TL_WA901ND_V1 0x09010001 #define HWID_TL_WA901ND_V2 0x09010002 #define HWID_TL_WDR4900_V1 0x49000001 @@ -223,6 +225,16 @@ static struct board_info boards[] = { .hw_id = HWID_TL_WA801ND_V1, .hw_rev = 1, .layout_id = "4M", + }, { + .id = "TL-WA830REv1", + .hw_id = HWID_TL_WA830RE_V1, + .hw_rev = 1, + .layout_id = "4M", + }, { + .id = "TL-WA830REv2", + .hw_id = HWID_TL_WA830RE_V2, + .hw_rev = 1, + .layout_id = "4M", }, { .id = "TL-WA901NDv1", .hw_id = HWID_TL_WA901ND_V1,