diff mbox

[OpenWrt-Devel,4/4] ipq806x: initialize the network on AP148

Message ID 1424754121-19468-5-git-send-email-mathieu@codeaurora.org
State Accepted
Headers show

Commit Message

Mathieu Olivari Feb. 24, 2015, 5:02 a.m. UTC
Signed-off-by: Mathieu Olivari <mathieu@codeaurora.org>
---
 .../ipq806x/base-files/etc/uci-defaults/network    | 32 ++++++++++++++++++++++
 1 file changed, 32 insertions(+)
 create mode 100755 target/linux/ipq806x/base-files/etc/uci-defaults/network
diff mbox

Patch

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 0000000..34e9fe4
--- /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