mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-24 00:14:05 +02:00
fix adm switch misdetection, which led to bogus button events that caused the system to shut down
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9555 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
5fe95d1b66
commit
173083fcbf
@ -738,7 +738,7 @@ static struct platform_t __init *platform_detect(void)
|
|||||||
return &platforms[WR850GV2V3];
|
return &platforms[WR850GV2V3];
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!strcmp(boardnum, "44")) { /* Trendware TEW-411BRP+ */
|
if (!strcmp(boardnum, "44") && !strcmp(getvar("boardflags"),"0x0388")) { /* Trendware TEW-411BRP+ */
|
||||||
return &platforms[TEW411BRPP];
|
return &platforms[TEW411BRPP];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -500,13 +500,13 @@ static int detect_adm(void)
|
|||||||
int boardflags = atoi(nvram_get("boardflags"));
|
int boardflags = atoi(nvram_get("boardflags"));
|
||||||
int boardnum = atoi(nvram_get("boardnum"));
|
int boardnum = atoi(nvram_get("boardnum"));
|
||||||
|
|
||||||
if (boardnum == 44) { /* Trendware TEW-411BRP+ */
|
if ((boardnum == 44) && (boardflags == 0x0388)) { /* Trendware TEW-411BRP+ */
|
||||||
ret = 1;
|
ret = 1;
|
||||||
|
|
||||||
eecs = get_gpiopin("adm_eecs", 2);
|
eecs = get_gpiopin("adm_eecs", 2);
|
||||||
eesk = get_gpiopin("adm_eesk", 3);
|
eesk = get_gpiopin("adm_eesk", 3);
|
||||||
eedi = get_gpiopin("adm_eedi", 4);
|
eedi = get_gpiopin("adm_eedi", 4);
|
||||||
eerc = get_gpiopin("adm_rc", 5);
|
eerc = get_gpiopin("adm_rc", 5);
|
||||||
|
|
||||||
} else if ((boardflags & 0x80) || force) {
|
} else if ((boardflags & 0x80) || force) {
|
||||||
ret = 1;
|
ret = 1;
|
||||||
|
Loading…
Reference in New Issue
Block a user