fix serial console
[openwrt.git] / obsolete-buildroot / sources / openwrt / kernel / diag.c
index 7b41629..41cb17b 100644 (file)
@@ -68,7 +68,7 @@ static unsigned int diag = 0;
 
 static void diag_change()
 {
-       printk(KERN_INFO "led -> %02x\n",diag);
+       //printk(KERN_INFO "led -> %02x\n",diag);
 
        set_diag(0xFF); // off
        set_dmz(0xFF); // off
@@ -148,7 +148,7 @@ static int __init diag_init()
        set_diag=ignore;
        set_dmz=ignore;
        
-       if (board_type & 0x400) {
+       if ((board_type & 0xf00) == 0x400) {
                board_type=1;
                buf=nvram_get("boardtype")?:"";
                if (!strcmp(buf,"bcm94710dev")) {
@@ -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,"42")) {
+                               // buffalo
+                               set_dmz=v2_set_dmz;
+                               reset_gpio=(1<<4);
+                               reset_polarity=1;
+                       } else if (!strcmp(buf,"44")) {
+                               //dell truemobile
+                               set_dmz=v2_set_dmz;
+                               reset_gpio=(1<<0);
+                               reset_polarity=0;
+                       }
                }
        } else {
                board_type=2;
@@ -178,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);
 
This page took 0.022881 seconds and 4 git commands to generate.