quick and dirty hack to fix the reset on motorola WR850G

SVN-Revision: 207
lede-17.01
Mike Baker 2005-01-25 08:35:15 +00:00
parent 85b5733942
commit c0833c58bc
1 changed files with 7 additions and 0 deletions

View File

@ -185,6 +185,13 @@ static int __init diag_init()
set_dmz=v2_set_dmz;
reset_gpio=(1<<6);
reset_polarity=0;
buf=nvram_get("boardnum")?:"";
if (!strcmp(buf,"44")) {
set_diag=ignore;
set_dmz=ignore;
reset_gpio=(1<<5);
reset_polarity=0;
}
}
printk(KERN_INFO "using v%d hardware\n",board_type);