aboutsummaryrefslogtreecommitdiffstats
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
commit9b9c6174bf54d5cbc4bb4fd602b68f2de258f7ff (patch)
tree4024162d5b86889b762dc89d3c29e6eebe4fbe89 /target/linux/mvebu/base-files
parent709b91a2bf362279d1dc25b927777b980fe7a22d (diff)
downloadmaster-187ad058-9b9c6174bf54d5cbc4bb4fd602b68f2de258f7ff.tar.gz
master-187ad058-9b9c6174bf54d5cbc4bb4fd602b68f2de258f7ff.tar.bz2
master-187ad058-9b9c6174bf54d5cbc4bb4fd602b68f2de258f7ff.zip
[mvebu]: automatically generate network config
Signed-off-by: Imre Kaloz <kaloz@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@41381 3c298f89-4303-0410-b956-a3cf2f4a3e73
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