summaryrefslogtreecommitdiffstats
path: root/target/linux/mvebu/base-files
diff options
context:
space:
mode:
authorImre Kaloz <kaloz@openwrt.org>2014-06-29 12:50:12 +0000
committerImre Kaloz <kaloz@openwrt.org>2014-06-29 12:50:12 +0000
commitf953ed4ffbae52f7d4d7d1a13623e4be5c742162 (patch)
tree2fb782cc5b301625dbda2627f7db8fb4de426056 /target/linux/mvebu/base-files
parenta91b9e35a4fb946c4f8490d2fb93e49a5814eb73 (diff)
downloadmaster-31e0f0ae-f953ed4ffbae52f7d4d7d1a13623e4be5c742162.tar.gz
master-31e0f0ae-f953ed4ffbae52f7d4d7d1a13623e4be5c742162.tar.bz2
master-31e0f0ae-f953ed4ffbae52f7d4d7d1a13623e4be5c742162.zip
automatically generate network config
Signed-off-by: Imre Kaloz <kaloz@openwrt.org> SVN-Revision: 41381
Diffstat (limited to 'target/linux/mvebu/base-files')
-rw-r--r--target/linux/mvebu/base-files/etc/uci-defaults/02_network29
1 files changed, 29 insertions, 0 deletions
diff --git a/target/linux/mvebu/base-files/etc/uci-defaults/02_network b/target/linux/mvebu/base-files/etc/uci-defaults/02_network
new file mode 100644
index 0000000000..8b1ed6a789
--- /dev/null
+++ b/target/linux/mvebu/base-files/etc/uci-defaults/02_network
@@ -0,0 +1,29 @@
+#!/bin/sh
+#
+# Copyright (C) 2014 OpenWrt.org
+#
+
+[ -e /etc/config/network ] && exit 0
+
+touch /etc/config/network
+
+. /lib/functions/uci-defaults.sh
+. /lib/mvebu.sh
+
+ucidef_set_interface_loopback
+
+board=$(mvebu_board_name)
+
+case "$board" in
+armada-xp-mamba)
+ ucidef_set_interfaces_lan_wan "eth0" "eth1"
+ ;;
+
+*)
+ ucidef_set_interface_lan "eth0"
+ ;;
+esac
+
+uci commit network
+
+exit 0