2d072c5997
SVN-Revision: 5113
13 lines
231 B
Bash
Executable file
13 lines
231 B
Bash
Executable file
#!/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
|
|
}
|
|
|