Changeset 12011


Ignore:
Timestamp:
04/28/09 17:03:29 (4 years ago)
Author:
BrainSlayer
Message:

include more suspicious cards

Location:
src/router
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • src/router/httpd/Makefile

    r11910 r12011  
    217217CFLAGS += -DHAVE_EOC1650 
    218218endif 
     219ifeq ($(CONFIG_ALLNETWRT),y) 
     220CFLAGS += -DHAVE_ALLNETWRT 
     221endif 
    219222ifeq ($(CONFIG_FONERA2200),y) 
    220223CFLAGS += -DHAVE_FONERA2200 
  • src/router/httpd/visuals/dd-wrt.c

    r12004 r12011  
    39223922        websWrite( wp,"document.write(\"<option value=\\\"2\\\" %s >Senao EMP-8603-S</option>\");\n",nvram_default_match( wl_cardtype, "2","0" ) ? "selected=\\\"selected\\\"" : "" ); 
    39233923        websWrite( wp,"document.write(\"<option value=\\\"3\\\" %s >Senao EMP-8603</option>\");\n",nvram_default_match( wl_cardtype, "3","0" ) ? "selected=\\\"selected\\\"" : "" ); 
     3924        websWrite( wp,"document.write(\"<option value=\\\"4\\\" %s >jjPlus JA24MP0 (MakSat OEM)</option>\");\n",nvram_default_match( wl_cardtype, "4","0" ) ? "selected=\\\"selected\\\"" : "" ); 
    39243925        websWrite( wp, "//]]>\n</script>\n</select>\n</div>\n" );        
    39253926        } 
  • src/router/libutils/wl.c

    r11958 r12011  
    829829    } 
    830830    if (vendor==0x168c && product==0x2062) 
     831        return 1; 
     832    if (vendor==0x168c && product==0x2063) //will include more suspicius cards.  
    831833        return 1; 
    832834return 0; 
Note: See TracChangeset for help on using the changeset viewer.