Browse Source

atheros: configure eth1 as wan interface by default, if present

SVN-Revision: 15473
Felix Fietkau 17 years ago
parent
commit
1d2fc6aa95
1 changed files with 10 additions and 0 deletions
  1. 10 0
      target/linux/atheros/base-files/etc/uci-defaults/network

+ 10 - 0
target/linux/atheros/base-files/etc/uci-defaults/network

@@ -8,6 +8,7 @@ set network.wan=interface
 set network.wan.ifname=eth0.2
 set network.wan.proto=dhcp
 EOF
+	HAS_SWITCH=1
 fi
 
 if [ -e "/sys/bus/mdio_bus/drivers/IC+ IP175C/0:00" ]; then
@@ -24,6 +25,15 @@ set network.eth0_2.device=eth0
 set network.eth0_2.vlan=2
 set network.eth0_2.ports="4 5t"
 EOF
+	HAS_SWITCH=1
 fi
 
+[ -z "$HAS_SWITCH" -a -d /sys/class/net/eth1 ] && {
+	uci batch <<EOF
+set network.wan=interface
+set network.wan.ifname=eth1
+set network.wan.proto=dhcp
+EOF
+}
+
 uci commit network