summaryrefslogtreecommitdiffstats
path: root/package/base-files/default/etc/init.d/network
blob: 45d5311a7ad64f4eab28f7b607bc80e308216aeb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh /etc/rc.common
# Copyright (C) 2006 OpenWrt.org

START=40
start() {
	setup_switch() { return 0; }

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