From: Mike Baker Date: Tue, 25 Jan 2005 08:35:15 +0000 (+0000) Subject: quick and dirty hack to fix the reset on motorola WR850G X-Git-Url: http://207.154.207.93/?a=commitdiff_plain;h=69f5b5ae577e7bbfa81d181600ecf712c57624ce;p=15.05%2Fopenwrt.git quick and dirty hack to fix the reset on motorola WR850G git-svn-id: svn://svn.openwrt.org/openwrt/trunk@207 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/obsolete-buildroot/sources/openwrt/kernel/diag.c b/obsolete-buildroot/sources/openwrt/kernel/diag.c index 726e1976e0..41cb17bf4d 100644 --- a/obsolete-buildroot/sources/openwrt/kernel/diag.c +++ b/obsolete-buildroot/sources/openwrt/kernel/diag.c @@ -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);