aboutsummaryrefslogtreecommitdiffstats
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
commitd8c155dfc9f2273ccc59769221ff3172cc74e174 (patch)
treeb84fd84fae0b742a76e5d875482713db4c2ebbd2 /target/linux/kirkwood/base-files/etc/uci-defaults/02_network
parent3ab3849ad331f8a5aa1da219de962581b695fc58 (diff)
downloadmaster-187ad058-d8c155dfc9f2273ccc59769221ff3172cc74e174.tar.gz
master-187ad058-d8c155dfc9f2273ccc59769221ff3172cc74e174.tar.bz2
master-187ad058-d8c155dfc9f2273ccc59769221ff3172cc74e174.zip
all targets: use numerically prefixed uci-defaults file names to better control order of execution
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@35217 3c298f89-4303-0410-b956-a3cf2f4a3e73
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 0000000000..48c1232d3d
--- /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