mirror of https://github.com/hak5/openwrt.git
12 lines
151 B
Plaintext
12 lines
151 B
Plaintext
|
#!/bin/sh /etc/rc.common
|
||
|
# Copyright (C) 2006 OpenWrt.org
|
||
|
|
||
|
start() {
|
||
|
setup_switch() { return 0; }
|
||
|
|
||
|
include /lib/network
|
||
|
setup_switch
|
||
|
/sbin/wifi
|
||
|
}
|
||
|
|