blob: e795d65dc19bbb67cea793ff77787976e176fab7 (
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
46
47
48
49
50
51
52
53
|
#!/bin/sh
#
# Copyright (C) 2012-2014 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
. /lib/kirkwood.sh
board=$(kirkwood_board_name)
ucidef_set_interface_loopback
case "$board" in
"dockstar")
set_lan_dhcp "eth0"
;;
"iconnect")
set_lan_dhcp "eth0"
;;
"ib62x0")
set_lan_dhcp "eth0"
;;
"pogo_e02")
set_lan_dhcp "eth0"
;;
"ea4500")
ucidef_set_interfaces_lan_wan "eth0" "eth1"
;;
*)
ucidef_set_interface_lan "eth0"
;;
esac
uci commit network
exit 0
|