2009-01-28 20:01:11 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006-2009 OpenWrt.org
|
2007-03-04 19:55:47 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
2009-05-28 13:20:54 +00:00
|
|
|
PKG_NAME:=hotplug2-old
|
2007-03-04 19:55:47 +00:00
|
|
|
PKG_VERSION:=0.9
|
2009-01-28 20:01:11 +00:00
|
|
|
PKG_RELEASE:=3
|
2007-03-04 19:55:47 +00:00
|
|
|
|
2009-05-28 13:20:54 +00:00
|
|
|
PKG_SOURCE:=hotplug2-$(PKG_VERSION).tar.gz
|
2007-03-04 19:55:47 +00:00
|
|
|
PKG_SOURCE_URL:=http://isteve.bofh.cz/~isteve/hotplug2
|
|
|
|
PKG_MD5SUM:=ea2c01d027b4002e4e6b0ff266f51a51
|
|
|
|
|
2009-05-29 09:26:09 +00:00
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/hotplug2-$(PKG_VERSION)
|
|
|
|
|
2007-03-04 19:55:47 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
2009-05-28 13:20:54 +00:00
|
|
|
define Package/hotplug2-old
|
2008-04-21 22:31:07 +00:00
|
|
|
SECTION:=base
|
|
|
|
CATEGORY:=Base system
|
2007-06-25 09:46:37 +00:00
|
|
|
VERSION:=0.9+r102-$(PKG_RELEASE)
|
2007-03-04 19:55:47 +00:00
|
|
|
TITLE:=Dynamic device management subsystem for embedded systems
|
|
|
|
URL:=http://isteve.bofh.cz/~isteve/hotplug2/
|
|
|
|
endef
|
|
|
|
|
2009-05-28 13:20:54 +00:00
|
|
|
define Package/hotplug2-old/description
|
2007-09-07 08:34:51 +00:00
|
|
|
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.
|
2007-03-04 19:55:47 +00:00
|
|
|
endef
|
2007-09-07 08:34:51 +00:00
|
|
|
|
2007-07-09 00:13:47 +00:00
|
|
|
MAKE_FLAGS += CFLAGS="$(TARGET_CFLAGS) -DHAVE_RULES -I."
|
2007-03-04 19:55:47 +00:00
|
|
|
|
2009-05-28 13:20:54 +00:00
|
|
|
define Package/hotplug2-old/install
|
2007-05-05 18:33:18 +00:00
|
|
|
$(INSTALL_DIR) $(1)/etc
|
|
|
|
$(INSTALL_DATA) ./files/hotplug2.rules $(1)/etc/
|
2007-03-04 19:55:47 +00:00
|
|
|
$(INSTALL_DIR) $(1)/sbin
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/hotplug2 $(1)/sbin/
|
|
|
|
endef
|
|
|
|
|
2009-05-28 13:20:54 +00:00
|
|
|
$(eval $(call BuildPackage,hotplug2-old))
|