mirror of https://github.com/hak5/openwrt-owl.git
parent
d196e4087e
commit
f3f5cfd4ee
|
@ -54,6 +54,7 @@ module_param(gpiomask, int, 0644);
|
||||||
enum {
|
enum {
|
||||||
/* Linksys */
|
/* Linksys */
|
||||||
WAP54GV1,
|
WAP54GV1,
|
||||||
|
WAP54GV2,
|
||||||
WAP54GV3,
|
WAP54GV3,
|
||||||
WRT54GV1,
|
WRT54GV1,
|
||||||
WRT54G,
|
WRT54G,
|
||||||
|
@ -166,6 +167,16 @@ static struct platform_t __initdata platforms[] = {
|
||||||
{ .name = "wlan", .gpio = 1 << 4 },
|
{ .name = "wlan", .gpio = 1 << 4 },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
[WAP54GV2] = {
|
||||||
|
.name = "Linksys WAP54G V2",
|
||||||
|
.buttons = {
|
||||||
|
{ .name = "reset", .gpio = 1 << 0 },
|
||||||
|
},
|
||||||
|
.leds = {
|
||||||
|
{ .name = "wlan", .gpio = 1 << 5, .polarity = REVERSE },
|
||||||
|
/* GPIO 6 is b44 (eth0, LAN) PHY power */
|
||||||
|
},
|
||||||
|
},
|
||||||
[WAP54GV3] = {
|
[WAP54GV3] = {
|
||||||
.name = "Linksys WAP54G V3",
|
.name = "Linksys WAP54G V3",
|
||||||
.buttons = {
|
.buttons = {
|
||||||
|
@ -839,6 +850,8 @@ static struct platform_t __init *platform_detect(void)
|
||||||
/* default to WRT54G */
|
/* default to WRT54G */
|
||||||
return &platforms[WRT54G];
|
return &platforms[WRT54G];
|
||||||
}
|
}
|
||||||
|
if (!strcmp(boardnum, "1024") && !strcmp(boardtype, "0x0446"))
|
||||||
|
return &platforms[WAP54GV2];
|
||||||
|
|
||||||
if (!strcmp(boardnum, "44") || !strcmp(boardnum, "44\r")) {
|
if (!strcmp(boardnum, "44") || !strcmp(boardnum, "44\r")) {
|
||||||
if (!strcmp(boardtype,"0x0101") || !strcmp(boardtype, "0x0101\r"))
|
if (!strcmp(boardtype,"0x0101") || !strcmp(boardtype, "0x0101\r"))
|
||||||
|
|
Loading…
Reference in New Issue