2009-05-28 13:21:58 +00:00
|
|
|
#
|
2011-02-01 16:37:53 +00:00
|
|
|
# Copyright (C) 2006-2011 OpenWrt.org
|
2009-05-28 13:21:58 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=hotplug2
|
Fix a memory leak in hotplug2 environment handling. Bump hotplug2 to the latest svn revision, remove obsolete patches.
Memory leak is caused by the way hotplug2 handles environment variables,
using setenv() and unsetenv(). setenv() creates copies of the supplied
strings, but, due to a POSIX blunder, these copies are never destroyed
by unsetenv(), neither in glibc nor uclibc - not until the program
terminates.
Since some events are handled directly in the main process, even when
configured with the "fork" worker, hotplug2 memory usage will keep
growing over time. This can be observed by running "udevtrigger" and
noting the increase in hotplug2 VmRSS after each run.
This patch uses putenv() instead, which leaves storage management to
the caller, so that we can explicitly delete stuff when it's no longer
needed.
Signed-off-by: Aleksandar Radovanovic <biblbroks@sezampro.rs>
SVN-Revision: 18725
2009-12-09 18:50:49 +00:00
|
|
|
PKG_REV:=201
|
2009-05-28 13:21:58 +00:00
|
|
|
PKG_VERSION:=$(PKG_REV)
|
2011-02-01 16:37:53 +00:00
|
|
|
PKG_RELEASE:=4
|
2009-05-28 13:21:58 +00:00
|
|
|
|
|
|
|
PKG_SOURCE_PROTO:=svn
|
|
|
|
PKG_SOURCE_VERSION:=$(PKG_REV)
|
|
|
|
PKG_SOURCE_SUBDIR:=hotplug2-$(PKG_VERSION)
|
2010-10-05 17:16:12 +00:00
|
|
|
PKG_SOURCE_URL:=http://svn.nomi.cz/svn/isteve/hotplug2
|
2009-05-28 13:21:58 +00:00
|
|
|
PKG_SOURCE:=$(PKG_SOURCE_SUBDIR).tar.gz
|
|
|
|
#PKG_SOURCE_URL:=http://isteve.bofh.cz/~isteve/hotplug2
|
|
|
|
#PKG_MD5SUM:=ea2c01d027b4002e4e6b0ff266f51a51
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/hotplug2
|
|
|
|
SECTION:=base
|
|
|
|
CATEGORY:=Base system
|
|
|
|
VERSION:=1.0-beta-$(PKG_RELEASE)
|
|
|
|
TITLE:=Version 1.0 Dynamic device management subsystem for embedded systems
|
|
|
|
URL:=http://isteve.bofh.cz/~isteve/hotplug2/
|
2011-06-23 18:49:24 +00:00
|
|
|
DEPENDS:=+!USE_UCLIBC:libbsd
|
2009-05-28 13:21:58 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/hotplug2/description
|
|
|
|
Hotplug2 is a trivial replacement of some of the UDev functionality
|
|
|
|
in a tiny pack, intended for Linux early userspace: Init RAM FS and InitRD.
|
|
|
|
This is an implementation of Hotplug2-1.0-beta
|
|
|
|
endef
|
|
|
|
|
2010-10-05 17:16:12 +00:00
|
|
|
define Package/hotplug2/conffiles
|
|
|
|
/etc/hotplug2.rules
|
|
|
|
endef
|
|
|
|
|
2009-10-20 20:49:44 +00:00
|
|
|
MAKE_FLAGS += \
|
|
|
|
COPTS="$(TARGET_CFLAGS)" \
|
|
|
|
STATIC_WORKER="fork"
|
2009-05-28 13:21:58 +00:00
|
|
|
|
2011-06-17 22:51:20 +00:00
|
|
|
ifneq ($(CONFIG_USE_EGLIBC)$(CONFIG_USE_GLIBC),)
|
2011-06-13 13:16:11 +00:00
|
|
|
TARGET_LDFLAGS += -lbsd
|
|
|
|
endif
|
|
|
|
|
2011-03-07 02:49:24 +00:00
|
|
|
define Build/Compile
|
|
|
|
$(call Build/Compile/Default)
|
2011-06-13 13:16:11 +00:00
|
|
|
$(TARGET_CC) $(TARGET_CFLAGS) $(TARGET_LDFLAGS) -o $(PKG_BUILD_DIR)/udevtrigger src/udevtrigger.c
|
2011-03-07 02:49:24 +00:00
|
|
|
endef
|
|
|
|
|
2009-05-28 13:21:58 +00:00
|
|
|
define Package/hotplug2/install
|
|
|
|
$(INSTALL_DIR) $(1)/etc
|
|
|
|
$(INSTALL_DATA) ./files/hotplug2.rules $(1)/etc/
|
|
|
|
$(INSTALL_DIR) $(1)/sbin
|
2011-03-07 02:49:24 +00:00
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/udevtrigger $(1)/sbin/
|
2009-05-28 13:21:58 +00:00
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/hotplug2 $(1)/sbin/
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,hotplug2))
|