mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-24 01:01:52 +02:00
Add support for the ASUS WL-520gU
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10692 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
f09be1cdd6
commit
6d8877319f
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# Copyright (C) 2006 OpenWrt.org
|
# Copyright (C) 2006-2008 OpenWrt.org
|
||||||
#
|
#
|
||||||
# This is free software, licensed under the GNU General Public License v2.
|
# This is free software, licensed under the GNU General Public License v2.
|
||||||
# See /LICENSE for more information.
|
# See /LICENSE for more information.
|
||||||
@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk
|
|||||||
include $(INCLUDE_DIR)/kernel.mk
|
include $(INCLUDE_DIR)/kernel.mk
|
||||||
|
|
||||||
PKG_NAME:=broadcom-diag
|
PKG_NAME:=broadcom-diag
|
||||||
PKG_RELEASE:=2
|
PKG_RELEASE:=3
|
||||||
|
|
||||||
include $(INCLUDE_DIR)/package.mk
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
|
||||||
|
@ -68,7 +68,9 @@ enum {
|
|||||||
WL500G,
|
WL500G,
|
||||||
WL500GD,
|
WL500GD,
|
||||||
WL500GP,
|
WL500GP,
|
||||||
|
WL500GPV2,
|
||||||
WL500W,
|
WL500W,
|
||||||
|
WL520GU,
|
||||||
ASUS_4702,
|
ASUS_4702,
|
||||||
WL700GE,
|
WL700GE,
|
||||||
|
|
||||||
@ -292,6 +294,17 @@ static struct platform_t __initdata platforms[] = {
|
|||||||
{ .name = "power", .gpio = 1 << 5, .polarity = REVERSE },
|
{ .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] = {
|
[ASUS_4702] = {
|
||||||
.name = "ASUS (unknown, BCM4702)",
|
.name = "ASUS (unknown, BCM4702)",
|
||||||
.buttons = {
|
.buttons = {
|
||||||
@ -659,6 +672,12 @@ static struct platform_t __init *platform_detect(void)
|
|||||||
return &platforms[WL700GE];
|
return &platforms[WL700GE];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Based on "hardware_version" */
|
||||||
|
if (buf = nvram_get("hardware_version")) {
|
||||||
|
if (startswith(buf,"WL520GU-")) /* WL520GU-* */
|
||||||
|
return &platforms[WL520GU];
|
||||||
|
}
|
||||||
|
|
||||||
/* Based on "ModelId" */
|
/* Based on "ModelId" */
|
||||||
if (buf = nvram_get("ModelId")) {
|
if (buf = nvram_get("ModelId")) {
|
||||||
if (!strcmp(buf, "WR850GP"))
|
if (!strcmp(buf, "WR850GP"))
|
||||||
|
Loading…
Reference in New Issue
Block a user