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

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

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