diff options
author | jow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2013-01-18 12:42:53 +0000 |
---|---|---|
committer | jow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2013-01-18 12:42:53 +0000 |
commit | 560c530e279fb8ed2a4a23ba371a83870aacb71a (patch) | |
tree | b84fd84fae0b742a76e5d875482713db4c2ebbd2 /target/linux/ar7/base-files/etc/uci-defaults/network | |
parent | 4f5ccb4de32ae75233b97c8b599f965479c22066 (diff) |
all targets: use numerically prefixed uci-defaults file names to better control order of execution
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@35217 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar7/base-files/etc/uci-defaults/network')
-rw-r--r-- | target/linux/ar7/base-files/etc/uci-defaults/network | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/target/linux/ar7/base-files/etc/uci-defaults/network b/target/linux/ar7/base-files/etc/uci-defaults/network deleted file mode 100644 index 2d35c56b1..000000000 --- a/target/linux/ar7/base-files/etc/uci-defaults/network +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/sh -if [ -e "/sys/bus/mdio_bus/drivers/IC+ IP175A/1:00" -o \ - -e "/sys/bus/mdio_bus/drivers/IC+ IP17xx/1: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 4t" -commit network -EOF - HAS_SWITCH=1 -fi - -if [ -n "$HAS_SWITCH" -o \ - -e "/sys/bus/mdio_bus/drivers/Infineon ADM6996/1:00" -o \ - -e "/sys/bus/mdio_bus/drivers/Marvell 88E6060/1:10" ]; then - uci batch <<EOF -set network.lan.ifname=eth0.1 -commit network -EOF - HAS_SWITCH=1 -fi - -uci commit network |