aboutsummaryrefslogtreecommitdiffstats
path: root/package/base-files
diff options
context:
space:
mode:
authorJohn Crispin <blogic@openwrt.org>2007-07-24 22:10:10 +0000
committerJohn Crispin <blogic@openwrt.org>2007-07-24 22:10:10 +0000
commitb9a57974fadd2704819f85f02564e81c2f568fa3 (patch)
treea80b1294370463688af69c15bcda76e232ff7124 /package/base-files
parentaa66a101b822378ead3e2a18c0326d6c0a82bf01 (diff)
downloadupstream-b9a57974fadd2704819f85f02564e81c2f568fa3.tar.gz
upstream-b9a57974fadd2704819f85f02564e81c2f568fa3.tar.bz2
upstream-b9a57974fadd2704819f85f02564e81c2f568fa3.zip
wireless config gets regenerated not only when it does not exist, buit also if it is 0 len
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8149 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files')
-rwxr-xr-xpackage/base-files/files/etc/init.d/network2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/base-files/files/etc/init.d/network b/package/base-files/files/etc/init.d/network
index eab00118ad..2a116664e4 100755
--- a/package/base-files/files/etc/init.d/network
+++ b/package/base-files/files/etc/init.d/network
@@ -9,7 +9,7 @@ boot() {
include /lib/network
setup_switch
- [ -e /etc/config/wireless ] || \
+ [ -s /etc/config/wireless ] || \
/sbin/wifi detect > /etc/config/wireless
/sbin/wifi up
}