1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-12 08:58:02 +03:00
openwrt-xburst/target/linux/atheros/base-files/etc/uci-defaults/network
jow 8c71102761 [atheros] renaming of the IP175C switch driver brioke switch detection on the Dir-300 and others, fix it
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@22363 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-07-23 10:39:10 +00:00

46 lines
1.0 KiB
Bash

#!/bin/sh
if [ -e "/sys/bus/mdio_bus/drivers/IC+ IP175C/0:00" -o \
-e "/sys/bus/mdio_bus/drivers/IC+ IP17xx/0:00" ] && \
[ -x /sbin/swconfig ];
then
uci batch <<EOF
set network.eth0=switch
set network.eth0.name=eth0
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
HAS_SWITCH=1
fi
if [ -n "$HAS_SWITCH" -o \
-e "/sys/bus/mdio_bus/drivers/Infineon ADM6996/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
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
commit network
EOF
}
uci commit network