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

START=40
STOP=40

config_cb() {
	local cfg_type="$1"

	case "$cfg_type" in
		interface)
			append networks "$2" "$N"
		;;
	esac
}

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

	include /lib/network
	setup_switch
	[ -s /etc/config/wireless ] || \
		/sbin/wifi detect > /etc/config/wireless
	/sbin/wifi up
	for network in $networks; do
		config_get startupcheck $network started
		[ "$startupcheck" = "" ] && ifup $network
	done
}

start() {
	ifup -a
	/sbin/wifi up
}

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

stop() {
	ifdown -a
}