aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/lantiq/base-files/etc/uci-defaults/02_network
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2013-01-18 12:42:53 +0000
committerJo-Philipp Wich <jow@openwrt.org>2013-01-18 12:42:53 +0000
commitd8c155dfc9f2273ccc59769221ff3172cc74e174 (patch)
treeb84fd84fae0b742a76e5d875482713db4c2ebbd2 /target/linux/lantiq/base-files/etc/uci-defaults/02_network
parent3ab3849ad331f8a5aa1da219de962581b695fc58 (diff)
downloadupstream-d8c155dfc9f2273ccc59769221ff3172cc74e174.tar.gz
upstream-d8c155dfc9f2273ccc59769221ff3172cc74e174.tar.bz2
upstream-d8c155dfc9f2273ccc59769221ff3172cc74e174.zip
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/lantiq/base-files/etc/uci-defaults/02_network')
-rwxr-xr-xtarget/linux/lantiq/base-files/etc/uci-defaults/02_network75
1 files changed, 75 insertions, 0 deletions
diff --git a/target/linux/lantiq/base-files/etc/uci-defaults/02_network b/target/linux/lantiq/base-files/etc/uci-defaults/02_network
new file mode 100755
index 0000000000..db5b58e977
--- /dev/null
+++ b/target/linux/lantiq/base-files/etc/uci-defaults/02_network
@@ -0,0 +1,75 @@
+#!/bin/sh
+#
+# Copyright (C) 2011-2012 OpenWrt.org
+#
+
+[ -e /etc/config/network ] && exit 0
+
+set_atm_wan() {
+ local vpi=$1
+ local vci=$2
+ local encaps=$3
+ local payload=$4
+ uci batch <<EOF
+set network.atm='atm-bridge'
+set network.atm.vpi='$vpi'
+set network.atm.vci='$vci'
+set network.atm.encaps='$encaps'
+set network.atm.payload='$payload'
+set network.wan='interface'
+set network.wan.ifname='nas0'
+set network.wan.proto='pppoe'
+set network.wan.username='foo'
+set network.wan.password='bar'
+EOF
+}
+
+. /lib/functions/uci-defaults.sh
+. /lib/functions/lantiq.sh
+
+touch /etc/config/network
+
+ucidef_set_interface_loopback
+ucidef_set_interface_lan 'eth0'
+
+vpi=1
+vci=32
+encaps="llc"
+payload="bridged"
+
+board=$(lantiq_board_id)
+
+case "$board" in
+# adm6996
+ARV4520PW)
+ ucidef_set_interface_lan "eth0.1"
+ ucidef_add_switch "eth0" "1" "1"
+ ucidef_add_switch_vlan "eth0" "1" "3 2 1 0 5t"
+ ;;
+
+GIGASX76X)
+ ucidef_set_interface_lan "eth0.1"
+ ucidef_add_switch "eth0" "1" "1"
+ ucidef_add_switch_vlan "eth0" "1" "4 3 2 1 5t"
+ ;;
+
+# ar8316
+ARV4519PW|ARV7518PW)
+ ucidef_set_interface_lan "eth0.1"
+ ucidef_add_switch "eth0" "1" "1"
+ ucidef_add_switch_vlan "eth0" "1" "0t 2 3 4 5"
+ ;;
+
+WBMR)
+ ucidef_add_switch "eth0" "1" "0"
+ ucidef_add_switch_vlan "eth0" "1" "0 1 2 3 4 5"
+ ;;
+
+esac
+
+[ -z "$(ls /lib/modules/`uname -r`/ltq_atm*)" ] || set_atm_wan "$vpi" "$vci" "$encaps" "$payload"
+
+
+uci commit network
+
+exit 0