2006-10-04 20:05:48 +00:00
|
|
|
#!/bin/sh /etc/rc.common
|
2006-08-01 23:19:54 +00:00
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
2006-07-30 03:09:09 +00:00
|
|
|
|
2006-10-15 21:03:30 +00:00
|
|
|
START=40
|
2007-05-10 10:07:38 +00:00
|
|
|
STOP=40
|
|
|
|
|
2007-03-02 13:21:33 +00:00
|
|
|
boot() {
|
2006-10-04 20:05:48 +00:00
|
|
|
setup_switch() { return 0; }
|
|
|
|
|
|
|
|
include /lib/network
|
|
|
|
setup_switch
|
2007-07-24 22:10:10 +00:00
|
|
|
[ -s /etc/config/wireless ] || \
|
2006-10-15 15:27:34 +00:00
|
|
|
/sbin/wifi detect > /etc/config/wireless
|
|
|
|
/sbin/wifi up
|
2006-10-04 20:05:48 +00:00
|
|
|
}
|
2006-07-30 03:09:09 +00:00
|
|
|
|
2007-03-02 13:21:33 +00:00
|
|
|
start() {
|
|
|
|
ifup -a
|
|
|
|
/sbin/wifi up
|
|
|
|
}
|
|
|
|
|
|
|
|
restart() {
|
2008-03-02 14:56:13 +00:00
|
|
|
setup_switch()
|
2007-03-02 13:21:33 +00:00
|
|
|
ifup -a
|
|
|
|
/sbin/wifi up
|
|
|
|
}
|
|
|
|
|
|
|
|
stop() {
|
|
|
|
ifdown -a
|
|
|
|
}
|