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

START=40
STOP=40

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

	include /lib/network
	setup_switch
	[ -s /etc/config/wireless ] || \
		/sbin/wifi detect > /etc/config/wireless
	/sbin/wifi up
}

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

restart() {
	setup_switch()
	ifup -a
	/sbin/wifi up
}

stop() {
	ifdown -a
}