Asus WL-330gE Support
[openwrt/staging/florian.git] / target / linux / brcm-2.4 / base-files / etc / init.d / netconfig
index 65ffe320da87153c53b64abb7fab3fe99a3b4b3c..a53209e06a26cbc2bd35bb582b0792436d6ccd63 100755 (executable)
@@ -57,6 +57,12 @@ start() {
                        c["wan_ifname"] = ""
                        c["lan_ifname"] = "eth1"
                }
+               if (model == "ASUS WL-330gE") {
+                       c["wan_ifname"] = ""
+                       c["lan_ifname"] = "eth0"
+                       c["vlan0ports"] = ""
+                       c["vlan1ports"] = ""
+               }
                if (model == "ASUS WL-500g") {
                        c["wan_ifname"] = "eth1"
                        c["lan_ifname"] = "eth0"
@@ -65,8 +71,13 @@ start() {
                                c["vlan0ports"] = "0 1 2 3 5*"
                                c["vlan1ports"] = "4 5"
                }
-
                if (model == "Dell TrueMobile 2300") {
+                       c["lan_ifname"] = "eth0"
+                       c["wan_ifname"] = "eth1"
+                       c["vlan0ports"] = "0 1 2 3 4 5u"
+                       c["vlan1ports"] = ""
+               }
+               if (model == "Dell TrueMobile 2300 v2") {
                        c["vlan0ports"] = "0 1 2 3 5*"
                        c["vlan1ports"] = "4 5"
                }
@@ -102,6 +113,11 @@ start() {
                                }
                        }
                }
+               if (nvram["boardtype"] == "0x478") {
+                       # generic broadcom 4785 processor with 5397 switch?
+                       c["vlan0ports"] = "1 2 3 4 8*"
+                       c["vlan1ports"] = "0 8"
+               }
 
                # WAP54G
                if ((nvram["boardnum"] == "2") || \
@@ -139,12 +155,14 @@ start() {
                        c["vlan1ports"] = ""
                }
 
-               print "#### VLAN configuration "
-               print "config switch eth0"
-               p("vlan0", "vlan0ports")
-               p("vlan1", "vlan1ports")
-               print ""
-               print ""
+               if (c["vlan0ports"] || c["vlan1ports"]) {
+                       print "#### VLAN configuration "
+                       print "config switch eth0"
+                       p("vlan0", "vlan0ports")
+                       p("vlan1", "vlan1ports")
+                       print ""
+                       print ""
+               }
                print "#### Loopback configuration"
                print "config interface loopback"
                print " option ifname   \"lo\""
@@ -163,10 +181,16 @@ start() {
                print " option netmask  255.255.255.0"
                print ""
                print ""
-               print "#### WAN configuration"
-               print "config interface wan"
-               p("ifname", "wan_ifname")
-               p("macaddr", "wan_macaddr")
-               print " option proto    dhcp"
+               if (c["wan_ifname"]) {
+                       print "#### WAN configuration"
+                       print "config interface wan"
+                       p("ifname", "wan_ifname")
+                       p("macaddr", "wan_macaddr")
+                       print " option proto    dhcp"
+               } else {
+                       print "#### WAN configuration (disabled)"
+                       print "#config interface wan"
+                       print "#        option proto    dhcp"
+               }
        }' > /etc/config/network
 }