summaryrefslogtreecommitdiffstats
path: root/package/broadcom-diag
diff options
context:
space:
mode:
authoragb <agb@3c298f89-4303-0410-b956-a3cf2f4a3e73>2008-03-31 08:04:56 +0000
committeragb <agb@3c298f89-4303-0410-b956-a3cf2f4a3e73>2008-03-31 08:04:56 +0000
commit9325eaaa8cfc578fe07e8e3e3990e3da90bf7728 (patch)
tree0f5c02c777fa78a77b8a54cd61694fcbece7eae5 /package/broadcom-diag
parent6d8877319fc935c0960917a8df963700fa9f6e74 (diff)
Add support for the WL-500gP v2
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10693 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/broadcom-diag')
-rw-r--r--package/broadcom-diag/Makefile2
-rw-r--r--package/broadcom-diag/src/diag.c13
2 files changed, 14 insertions, 1 deletions
diff --git a/package/broadcom-diag/Makefile b/package/broadcom-diag/Makefile
index 0158779c6..19fd4cb87 100644
--- a/package/broadcom-diag/Makefile
+++ b/package/broadcom-diag/Makefile
@@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk
include $(INCLUDE_DIR)/kernel.mk
PKG_NAME:=broadcom-diag
-PKG_RELEASE:=3
+PKG_RELEASE:=4
include $(INCLUDE_DIR)/package.mk
diff --git a/package/broadcom-diag/src/diag.c b/package/broadcom-diag/src/diag.c
index 3f9299737..b670944e0 100644
--- a/package/broadcom-diag/src/diag.c
+++ b/package/broadcom-diag/src/diag.c
@@ -284,6 +284,17 @@ static struct platform_t __initdata platforms[] = {
{ .name = "power", .gpio = 1 << 1, .polarity = REVERSE },
},
},
+ [WL500GPV2] = {
+ .name = "ASUS WL-500g Premium V2",
+ .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 },
+ },
+ },
[WL500W] = {
.name = "ASUS WL-500W",
.buttons = {
@@ -674,6 +685,8 @@ static struct platform_t __init *platform_detect(void)
/* Based on "hardware_version" */
if (buf = nvram_get("hardware_version")) {
+ if (startswith(buf,"WL500GPV2-")) /* WL500GPV2-* */
+ return &platforms[WL500GPV2];
if (startswith(buf,"WL520GU-")) /* WL520GU-* */
return &platforms[WL520GU];
}