summaryrefslogtreecommitdiff
path: root/target/linux/mpc83xx/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
commit3a2cccda2eb45c6b55ef33c73a4af2c88935f383 (patch)
tree42f8f7a8c928a04176ec598da4684b0d778e216d /target/linux/mpc83xx/base-files/etc/uci-defaults/02_network
parent0de21d9747688e37cc9a9fb92c41abcdde9ef09f (diff)
downloadmtk-20170518-3a2cccda2eb45c6b55ef33c73a4af2c88935f383.zip
mtk-20170518-3a2cccda2eb45c6b55ef33c73a4af2c88935f383.tar.gz
mtk-20170518-3a2cccda2eb45c6b55ef33c73a4af2c88935f383.tar.bz2
all targets: use numerically prefixed uci-defaults file names to better control order of execution
SVN-Revision: 35217
Diffstat (limited to 'target/linux/mpc83xx/base-files/etc/uci-defaults/02_network')
-rwxr-xr-xtarget/linux/mpc83xx/base-files/etc/uci-defaults/02_network29
1 files changed, 29 insertions, 0 deletions
diff --git a/target/linux/mpc83xx/base-files/etc/uci-defaults/02_network b/target/linux/mpc83xx/base-files/etc/uci-defaults/02_network
new file mode 100755
index 0000000..a3467aa
--- /dev/null
+++ b/target/linux/mpc83xx/base-files/etc/uci-defaults/02_network
@@ -0,0 +1,29 @@
+#!/bin/sh
+#
+# Copyright (C) 2012 OpenWrt.org
+#
+
+[ -e /etc/config/network ] && exit 0
+
+touch /etc/config/network
+
+. /lib/functions/uci-defaults.sh
+. /lib/mpc83xx.sh
+
+ucidef_set_interface_loopback
+
+board=$(mpc83xx_board_name)
+
+case "$board" in
+rb333)
+ ucidef_set_interfaces_lan_wan "eth0 eth1" "eth2"
+ ;;
+
+*)
+ ucidef_set_interfaces_lan_wan "eth0" "eth1"
+ ;;
+esac
+
+uci commit network
+
+exit 0