summaryrefslogtreecommitdiff
path: root/target/linux/kirkwood/base-files/etc/uci-defaults/02_network
blob: bf95f72cb860ea8c64f844b6b17f70ccd1fbc859 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/bin/sh
#
# Copyright (C) 2012-2013 OpenWrt.org
#

[ -e /etc/config/network ] && exit 0

touch /etc/config/network

set_lan_dhcp() {
	local ifname=$1
	uci batch <<EOF
set network.lan='interface'
set network.lan.ifname='$ifname'
set network.lan.proto='dhcp'
set network.lan6='interface'
set network.lan6.ifname='@lan'
set network.lan6.proto='dhcpv6'
set network.lan6.reqprefix='no'
EOF
}

. /lib/functions/uci-defaults.sh

ucidef_set_interface_loopback

case "`cat /proc/device-tree/model`" in
"Seagate FreeAgent Dockstar")
	set_lan_dhcp "eth0"
	;;

"RaidSonic ICY BOX IB-NAS62x0 (Rev B)")
	set_lan_dhcp "eth0"
	;;
"Cloud Engines Pogoplug E02")
	set_lan_dhcp "eth0"
	;;
*)
	ucidef_set_interface_lan "eth0"
	;;
esac

uci commit network

exit 0