summaryrefslogtreecommitdiff
path: root/target/linux/kirkwood/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/kirkwood/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/kirkwood/base-files/etc/uci-defaults/02_network')
-rw-r--r--target/linux/kirkwood/base-files/etc/uci-defaults/02_network42
1 files changed, 42 insertions, 0 deletions
diff --git a/target/linux/kirkwood/base-files/etc/uci-defaults/02_network b/target/linux/kirkwood/base-files/etc/uci-defaults/02_network
new file mode 100644
index 0000000..48c1232
--- /dev/null
+++ b/target/linux/kirkwood/base-files/etc/uci-defaults/02_network
@@ -0,0 +1,42 @@
+#!/bin/sh
+#
+# Copyright (C) 2012 OpenWrt.org
+#
+
+[ -e /etc/config/network ] && exit 0
+
+set_lan_dhcp() {
+ local ifname=$1
+ uci batch <<EOF
+set network.lan='interface'
+set network.lan.ifname='$ifname'
+set network.lan.proto='dhcp'
+EOF
+}
+
+. /lib/functions/uci-defaults.sh
+. /lib/kirkwood.sh
+
+touch /etc/config/network
+
+ucidef_set_interface_loopback
+
+hardware=$(kirkwood_hardware_name)
+
+case "$hardware" in
+"Seagate FreeAgent DockStar")
+ set_lan_dhcp "eth0"
+ ;;
+
+"RaidSonic ICY BOX IB-NAS6210")
+ set_lan_dhcp "eth0"
+ ;;
+
+*)
+ ucidef_set_interface_lan "eth0"
+ ;;
+esac
+
+uci commit network
+
+exit 0