aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ipq806x
diff options
context:
space:
mode:
authorJohn Crispin <blogic@openwrt.org>2015-02-24 12:00:04 +0000
committerJohn Crispin <blogic@openwrt.org>2015-02-24 12:00:04 +0000
commit5b71c599e2b6da08c498a3a7d2fd71c8678fb85f (patch)
tree7fea66e40a0f3bd150450dd13d19926131937cec /target/linux/ipq806x
parent59b92343aa714cc947ce9dae8eddaa12bc9b22b9 (diff)
downloadmaster-187ad058-5b71c599e2b6da08c498a3a7d2fd71c8678fb85f.tar.gz
master-187ad058-5b71c599e2b6da08c498a3a7d2fd71c8678fb85f.tar.bz2
master-187ad058-5b71c599e2b6da08c498a3a7d2fd71c8678fb85f.zip
ipq806x: initialize the network on AP148
Signed-off-by: Mathieu Olivari <mathieu@codeaurora.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44522 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ipq806x')
-rwxr-xr-xtarget/linux/ipq806x/base-files/etc/uci-defaults/network32
1 files changed, 32 insertions, 0 deletions
diff --git a/target/linux/ipq806x/base-files/etc/uci-defaults/network b/target/linux/ipq806x/base-files/etc/uci-defaults/network
new file mode 100755
index 0000000000..34e9fe482b
--- /dev/null
+++ b/target/linux/ipq806x/base-files/etc/uci-defaults/network
@@ -0,0 +1,32 @@
+#!/bin/sh
+#
+# Copyright (c) 2015 The Linux Foundation. All rights reserved.
+# Copyright (C) 2011 OpenWrt.org
+#
+
+[ -e /etc/config/network ] && exit 0
+
+touch /etc/config/network
+
+. /lib/functions/uci-defaults.sh
+. /lib/ipq806x.sh
+
+ucidef_set_interface_loopback
+
+board=$(ipq806x_board_name)
+
+case "$board" in
+ap148)
+ ucidef_set_interfaces_lan_wan "eth1" "eth0"
+ ucidef_add_switch "switch0" "1" "1"
+ ucidef_add_switch_vlan "switch0" "1" "6 1 2 3 4"
+ ucidef_add_switch_vlan "switch0" "2" "0 5"
+ ;;
+*)
+ echo "Unsupported hardware. Network interfaces not intialized"
+ ;;
+esac
+
+uci commit network
+
+exit 0