From: mbm Date: Tue, 20 Jul 2004 02:37:57 +0000 (+0000) Subject: quick and dirty buffalo hack X-Git-Url: https://git.rohieb.name/openwrt.git/commitdiff_plain/055be4b87581baa649d469930ab3c5aec9acb159 quick and dirty buffalo hack git-svn-id: svn://svn.openwrt.org/openwrt/trunk@107 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/obsolete-buildroot/sources/openwrt-diag.c b/obsolete-buildroot/sources/openwrt-diag.c index 73bdac918..250a58e30 100644 --- a/obsolete-buildroot/sources/openwrt-diag.c +++ b/obsolete-buildroot/sources/openwrt-diag.c @@ -52,6 +52,9 @@ static void v1_set_dmz(u8 state) { } } +// - - - - - +static void ignore(u8 ignored) {}; + // - - - - - #define BIT_DMZ 0x01 #define BIT_DIAG 0x04 @@ -114,6 +117,12 @@ static int __init diag_init() board_type=1; set_diag=v1_set_diag; set_dmz=v1_set_dmz; + + if (board_type==0x41d) { + printk(KERN_INFO "buffalo hack.\n"); + set_diag=ignore; + set_dmz=v2_set_dmz; + } } else { board_type=2; set_diag=v2_set_diag;