summaryrefslogtreecommitdiffstats
path: root/package/broadcom-diag/src
diff options
context:
space:
mode:
authoragb <agb@3c298f89-4303-0410-b956-a3cf2f4a3e73>2008-03-31 08:04:27 +0000
committeragb <agb@3c298f89-4303-0410-b956-a3cf2f4a3e73>2008-03-31 08:04:27 +0000
commit6d8877319fc935c0960917a8df963700fa9f6e74 (patch)
treed7eb40062649a0d825faf2204bc353165dafa0f9 /package/broadcom-diag/src
parentf09be1cdd6c178a1b7eafb8bbd882d5c01cc1a0b (diff)
Add support for the ASUS WL-520gU
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10692 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/broadcom-diag/src')
-rw-r--r--package/broadcom-diag/src/diag.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/package/broadcom-diag/src/diag.c b/package/broadcom-diag/src/diag.c
index b842ed6bc..3f9299737 100644
--- a/package/broadcom-diag/src/diag.c
+++ b/package/broadcom-diag/src/diag.c
@@ -68,7 +68,9 @@ enum {
WL500G,
WL500GD,
WL500GP,
+ WL500GPV2,
WL500W,
+ WL520GU,
ASUS_4702,
WL700GE,
@@ -292,6 +294,17 @@ static struct platform_t __initdata platforms[] = {
{ .name = "power", .gpio = 1 << 5, .polarity = REVERSE },
},
},
+ [WL520GU] = {
+ .name = "ASUS WL-520gU",
+ .buttons = {
+ { .name = "reset", .gpio = 1 << 2 },
+ { .name = "ses", .gpio = 1 << 3 },
+ },
+ .leds = {
+ { .name = "power", .gpio = 1 << 0, .polarity = REVERSE },
+ { .name = "wlan", .gpio = 1 << 1, .polarity = REVERSE },
+ },
+ },
[ASUS_4702] = {
.name = "ASUS (unknown, BCM4702)",
.buttons = {
@@ -659,6 +672,12 @@ static struct platform_t __init *platform_detect(void)
return &platforms[WL700GE];
}
+ /* Based on "hardware_version" */
+ if (buf = nvram_get("hardware_version")) {
+ if (startswith(buf,"WL520GU-")) /* WL520GU-* */
+ return &platforms[WL520GU];
+ }
+
/* Based on "ModelId" */
if (buf = nvram_get("ModelId")) {
if (!strcmp(buf, "WR850GP"))