reset button fix for dell truemobile
SVN-Revision: 157
This commit is contained in:
parent
ecbdbb6617
commit
9dbd2c3627
1 changed files with 12 additions and 5 deletions
|
@ -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 a new issue