summaryrefslogtreecommitdiffstats
path: root/target/linux/kirkwood/base-files/etc/uci-defaults/network
diff options
context:
space:
mode:
authorjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>2012-05-29 16:39:15 +0000
committerjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>2012-05-29 16:39:15 +0000
commit3a3aa7378b980fcd2ef7c1284d52ec4fe510aacb (patch)
treee21efa23691a02af6c1aebf8f216ddb55cdc373c /target/linux/kirkwood/base-files/etc/uci-defaults/network
parent436c9f6d34c31e0173a60953858fe42b238822e4 (diff)
kirkwood: use uci-defaults to configure different boards
Signed-off-by: Luka Perkov <openwrt@lukaperkov.net> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31990 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/kirkwood/base-files/etc/uci-defaults/network')
-rw-r--r--target/linux/kirkwood/base-files/etc/uci-defaults/network42
1 files changed, 42 insertions, 0 deletions
diff --git a/target/linux/kirkwood/base-files/etc/uci-defaults/network b/target/linux/kirkwood/base-files/etc/uci-defaults/network
new file mode 100644
index 000000000..48c1232d3
--- /dev/null
+++ b/target/linux/kirkwood/base-files/etc/uci-defaults/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