# Copyright (C) 2006 OpenWrt.org
START=40
-STOP=40
+STOP=90
boot() {
setup_switch() { return 0; }
}
start() {
- ifup -a
- /sbin/wifi up
-}
-
-restart() {
- setup_switch()
+ setup_switch() { return 0; }
+
+ include /lib/network
+ setup_switch
ifup -a
/sbin/wifi up
}
stop() {
ifdown -a
}
+
+restart() {
+ start
+}