summaryrefslogtreecommitdiff
path: root/package/base-files/files/etc/init.d/network
blob: d60d41a64e07726011ff529b2bb71a9294465534 (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
#!/bin/sh /etc/rc.common
# Copyright (C) 2006 OpenWrt.org

START=40
STOP=90

boot() {
	setup_switch() { return 0; }

	include /lib/network
	setup_switch
	grep -qs config /etc/config/wireless && {
		/sbin/wifi up
	} || {
		rm -f /etc/config/wireless
		/sbin/wifi detect > /etc/config/wireless
	}

	scan_interfaces

	local ifc
	for ifc in $interfaces; do
		local proto
		config_get proto "$ifc" proto

		type "coldplug_interface_$proto" >/dev/null && \
			coldplug_interface_$proto "$ifc"
	done
}

start() {
	setup_switch() { return 0; }
	
	include /lib/network
	setup_switch
	ifup -a
	/sbin/wifi up
}

stop() {
	ifdown -a
}

restart() {
	start
}