diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-04-03 13:31:59 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-04-03 13:31:59 +0000 |
commit | 9965c7f2e32f26f353ca7f7f02581a169808f5ef (patch) | |
tree | f30995ce2f6c105006d9bf7f8611c7488c428f3b /package | |
parent | d0f557ddbf80e95756f5c7a3bebf39d0fa8bd5ba (diff) | |
download | upstream-9965c7f2e32f26f353ca7f7f02581a169808f5ef.tar.gz upstream-9965c7f2e32f26f353ca7f7f02581a169808f5ef.tar.bz2 upstream-9965c7f2e32f26f353ca7f7f02581a169808f5ef.zip |
[package] base-files: also regenerate wifi config if existing config contains only whitespace
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20669 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r-- | package/base-files/Makefile | 2 | ||||
-rwxr-xr-x | package/base-files/files/etc/init.d/network | 7 |
2 files changed, 6 insertions, 3 deletions
diff --git a/package/base-files/Makefile b/package/base-files/Makefile index 856340f667..b4942d938c 100644 --- a/package/base-files/Makefile +++ b/package/base-files/Makefile @@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk include $(INCLUDE_DIR)/kernel.mk PKG_NAME:=base-files -PKG_RELEASE:=41 +PKG_RELEASE:=42 PKG_FILE_DEPENDS:=$(PLATFORM_DIR)/ $(GENERIC_PLATFORM_DIR)/base-files/ diff --git a/package/base-files/files/etc/init.d/network b/package/base-files/files/etc/init.d/network index 3587c24aaa..43d0a84232 100755 --- a/package/base-files/files/etc/init.d/network +++ b/package/base-files/files/etc/init.d/network @@ -9,9 +9,12 @@ boot() { include /lib/network setup_switch - [ -s /etc/config/wireless ] || \ + grep -qs config /etc/config/wireless && { + /sbin/wifi up + } || { + rm -f /etc/config/wireless /sbin/wifi detect > /etc/config/wireless - /sbin/wifi up + } } start() { |