diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2012-01-19 15:37:47 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2012-01-19 15:37:47 +0000 |
commit | 9fd38863652081fd4a31178fdb68e5e2a118eba8 (patch) | |
tree | 573c592ac259c2476eaa2585393b1c67a5b82609 | |
parent | b81354d8286386adc010d3178bd153bf0f6fc661 (diff) | |
download | upstream-9fd38863652081fd4a31178fdb68e5e2a118eba8.tar.gz upstream-9fd38863652081fd4a31178fdb68e5e2a118eba8.tar.bz2 upstream-9fd38863652081fd4a31178fdb68e5e2a118eba8.zip |
base-files: do not pass --set-worker /lib/hotplug2/worker_fork.so to hotplug2 anymore, its statically linked - patch by Viktar Palstsiuk <viktar.palstsiuk@promwad.com>
SVN-Revision: 29806
-rw-r--r-- | package/base-files/Makefile | 2 | ||||
-rwxr-xr-x | package/base-files/files/etc/init.d/boot | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/package/base-files/Makefile b/package/base-files/Makefile index e384e2301c..b88422acdf 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:=101 +PKG_RELEASE:=102 PKG_FILE_DEPENDS:=$(PLATFORM_DIR)/ $(GENERIC_PLATFORM_DIR)/base-files/ PKG_BUILD_DEPENDS:=opkg/host diff --git a/package/base-files/files/etc/init.d/boot b/package/base-files/files/etc/init.d/boot index 7eb4541ce2..53c16be879 100755 --- a/package/base-files/files/etc/init.d/boot +++ b/package/base-files/files/etc/init.d/boot @@ -83,7 +83,6 @@ start() { killall -q hotplug2 [ -x /sbin/hotplug2 ] && /sbin/hotplug2 --override --persistent \ - --set-worker /lib/hotplug2/worker_fork.so \ --set-rules-file /etc/hotplug2.rules \ --max-children 1 >/dev/null 2>&1 & |