summaryrefslogtreecommitdiffstats
path: root/target/linux/ar7/base-files/etc/uci-defaults/02_network
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2015-12-04 14:27:47 +0000
committerJo-Philipp Wich <jow@openwrt.org>2015-12-04 14:27:47 +0000
commitca00bd2be44037fa9acbb43b6b29e7f06eb855d9 (patch)
tree37c43950a7cd252dc776f3db94164a1c9a2e314b /target/linux/ar7/base-files/etc/uci-defaults/02_network
parent1e4478e83a270f79f6714b46d226c29a5db9b743 (diff)
downloadmaster-31e0f0ae-ca00bd2be44037fa9acbb43b6b29e7f06eb855d9.tar.gz
master-31e0f0ae-ca00bd2be44037fa9acbb43b6b29e7f06eb855d9.tar.bz2
master-31e0f0ae-ca00bd2be44037fa9acbb43b6b29e7f06eb855d9.zip
ar7: switch from uci-defaults to board.d
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org> SVN-Revision: 47757
Diffstat (limited to 'target/linux/ar7/base-files/etc/uci-defaults/02_network')
-rw-r--r--target/linux/ar7/base-files/etc/uci-defaults/02_network30
1 files changed, 0 insertions, 30 deletions
diff --git a/target/linux/ar7/base-files/etc/uci-defaults/02_network b/target/linux/ar7/base-files/etc/uci-defaults/02_network
deleted file mode 100644
index 2d35c56b14..0000000000
--- a/target/linux/ar7/base-files/etc/uci-defaults/02_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