mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-23 23:46:16 +02:00
Add support for Asus wl-520gc
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11145 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
2d6e73eaf2
commit
059e0bf3b9
@ -70,6 +70,7 @@ enum {
|
|||||||
WL500GP,
|
WL500GP,
|
||||||
WL500GPV2,
|
WL500GPV2,
|
||||||
WL500W,
|
WL500W,
|
||||||
|
WL520GC,
|
||||||
WL520GU,
|
WL520GU,
|
||||||
ASUS_4702,
|
ASUS_4702,
|
||||||
WL700GE,
|
WL700GE,
|
||||||
@ -305,6 +306,17 @@ static struct platform_t __initdata platforms[] = {
|
|||||||
{ .name = "power", .gpio = 1 << 5, .polarity = REVERSE },
|
{ .name = "power", .gpio = 1 << 5, .polarity = REVERSE },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
[WL520GC] = {
|
||||||
|
.name = "ASUS WL-520GC",
|
||||||
|
.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 },
|
||||||
|
},
|
||||||
|
},
|
||||||
[WL520GU] = {
|
[WL520GU] = {
|
||||||
.name = "ASUS WL-520gU",
|
.name = "ASUS WL-520gU",
|
||||||
.buttons = {
|
.buttons = {
|
||||||
@ -687,6 +699,8 @@ static struct platform_t __init *platform_detect(void)
|
|||||||
if (buf = nvram_get("hardware_version")) {
|
if (buf = nvram_get("hardware_version")) {
|
||||||
if (startswith(buf,"WL500GPV2-")) /* WL500GPV2-* */
|
if (startswith(buf,"WL500GPV2-")) /* WL500GPV2-* */
|
||||||
return &platforms[WL500GPV2];
|
return &platforms[WL500GPV2];
|
||||||
|
if (startswith(buf,"WL520GC-")) /* WL520GU-* */
|
||||||
|
return &platforms[WL520GC];
|
||||||
if (startswith(buf,"WL520GU-")) /* WL520GU-* */
|
if (startswith(buf,"WL520GU-")) /* WL520GU-* */
|
||||||
return &platforms[WL520GU];
|
return &platforms[WL520GU];
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user