| 123456789101112131415161718192021222324252627282930313233 |
- #!/bin/sh /etc/rc.common
- # Copyright (C) 2006 OpenWrt.org
- START=40
- STOP=40
- boot() {
- setup_switch() { return 0; }
- include /lib/network
- setup_switch
- [ -s /etc/config/wireless ] || \
- /sbin/wifi detect > /etc/config/wireless
- /sbin/wifi up
- }
- start() {
- ifup -a
- /sbin/wifi up
- }
- restart() {
- setup_switch() { return 0; }
-
- include /lib/network
- setup_switch
- ifup -a
- /sbin/wifi up
- }
- stop() {
- ifdown -a
- }
|