mirror of https://github.com/hak5/openwrt.git
15 lines
240 B
Plaintext
15 lines
240 B
Plaintext
|
#!/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
|
||
|
}
|
||
|
|