mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-02 01:02:49 +02:00
bcf5f70a68
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18018 3c298f89-4303-0410-b956-a3cf2f4a3e73
46 lines
1.1 KiB
Makefile
46 lines
1.1 KiB
Makefile
#
|
|
# Copyright (C) 2006-2008 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=udevtrigger
|
|
PKG_VERSION:=106
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=udev-$(PKG_VERSION).tar.bz2
|
|
PKG_SOURCE_URL:=@KERNEL/linux/utils/kernel/hotplug/
|
|
PKG_MD5SUM:=320ccd2d0f4540d10e021bafa14f8985
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)/udev-$(PKG_VERSION)
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/udevtrigger
|
|
SECTION:=base
|
|
CATEGORY:=Base system
|
|
DEPENDS:=@LINUX_2_6
|
|
TITLE:=Small utility to request kernel devices events for coldplug
|
|
URL:=http://www.kernel.org/pub/linux/utils/kernel/hotplug/udev.html
|
|
MAINTAINER:=Geoff Levand <geoffrey.levand@am.sony.com>
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
CROSS_COMPILE="$(TARGET_CROSS)" \
|
|
STRIP="/bin/true" \
|
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
|
OPTFLAGS="$(TARGET_CFLAGS)" \
|
|
udevtrigger
|
|
endef
|
|
|
|
define Package/udevtrigger/install
|
|
$(INSTALL_DIR) $(1)/sbin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/udevtrigger $(1)/sbin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,udevtrigger))
|