when rebooting, use lazy umounts as fallback (patch by puchu)
[openwrt.git] / package / base-files / files / etc / init.d / network
index eab0011..74478c7 100755 (executable)
@@ -2,14 +2,14 @@
 # Copyright (C) 2006 OpenWrt.org
 
 START=40
-STOP=40
+STOP=90
 
 boot() {
        setup_switch() { return 0; }
 
        include /lib/network
        setup_switch
-       [ -e /etc/config/wireless ] || \
+       [ -s /etc/config/wireless ] || \
                /sbin/wifi detect > /etc/config/wireless
        /sbin/wifi up
 }
@@ -20,6 +20,10 @@ start() {
 }
 
 restart() {
+       setup_switch() { return 0; }
+       
+       include /lib/network
+       setup_switch
        ifup -a
        /sbin/wifi up
 }