mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-27 16:43:09 +02:00
reset button fix for dell truemobile
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@157 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
9430230107
commit
9f04a7283d
@ -166,11 +166,18 @@ static int __init diag_init()
|
||||
reset_polarity=1;
|
||||
}
|
||||
} else if (!strcmp(buf,"bcm94710ap")) {
|
||||
// buffalo
|
||||
set_diag=ignore;
|
||||
set_dmz=v2_set_dmz;
|
||||
reset_gpio=(1<<4);
|
||||
reset_polarity=1;
|
||||
buf=nvram_get("boardnum")?:"";
|
||||
if (!strcmp(buf,"44")) {
|
||||
//dell truemobile
|
||||
set_dmz=v2_set_dmz;
|
||||
reset_gpio=(1<<0);
|
||||
reset_polarity=0;
|
||||
} else {
|
||||
// buffalo
|
||||
set_dmz=v2_set_dmz;
|
||||
reset_gpio=(1<<4);
|
||||
reset_polarity=1;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
board_type=2;
|
||||
|
Loading…
Reference in New Issue
Block a user