summaryrefslogtreecommitdiffstats
path: root/target/linux/atheros/base-files
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-04-21 18:48:54 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-04-21 18:48:54 +0000
commitb1f6fc4320e0f99eb564da49785b252863d674e9 (patch)
tree0846a566f0a31372b14948c18e2e3d716fe81923 /target/linux/atheros/base-files
parentef0a8980a26b3eb90b98645083dfc7c65b7e881f (diff)
atheros: add default uci configuration for ICPlus IP175C
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15329 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/atheros/base-files')
-rw-r--r--target/linux/atheros/base-files/etc/uci-defaults/network20
1 files changed, 19 insertions, 1 deletions
diff --git a/target/linux/atheros/base-files/etc/uci-defaults/network b/target/linux/atheros/base-files/etc/uci-defaults/network
index fa9710940..4f6ff6179 100644
--- a/target/linux/atheros/base-files/etc/uci-defaults/network
+++ b/target/linux/atheros/base-files/etc/uci-defaults/network
@@ -1,11 +1,29 @@
#!/bin/sh
if [ -e "/sys/bus/mdio_bus/drivers/Infineon ADM6996/0:00" -o \
+ -e "/sys/bus/mdio_bus/drivers/IC+ IP175C/0:00" -o \
-e "/sys/bus/mdio_bus/drivers/Marvell 88E6060/0:10" ]; then
uci batch <<EOF
set network.lan.ifname=eth0.1
set network.wan=interface
set network.wan.ifname=eth0.2
set network.wan.proto=dhcp
-commit network
EOF
fi
+
+if [ -e "/sys/bus/mdio_bus/drivers/IC+ IP175C/0:00" ]; then
+ uci batch <<EOF
+set network.eth0=switch
+set network.eth0.reset=1
+set network.eth0.enable_vlan=1
+set network.eth0_1=switch_vlan
+set network.eth0_1.device=eth0
+set network.eth0_1.vlan=1
+set network.eth0_1.ports="0 1 2 3 5t"
+set network.eth0_2=switch_vlan
+set network.eth0_2.device=eth0
+set network.eth0_2.vlan=2
+set network.eth0_2.ports="4 5t"
+EOF
+fi
+
+uci commit network