Current versions of udev no longer provide the separate udevtrigger utility that hotplug2 needs. To allow for the udev package to be updated, yet still provide a udevtrigger, create a new package udevtrigger that is built from old udev sources. Signed-off-by: Geoff Levand <geoffrey.levand@am.sony.com> SVN-Revision: 17377master
parent
0142b07983
commit
0ff31d848f
@ -0,0 +1,43 @@ |
|||||||
|
#
|
||||||
|
# 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
|
||||||
|
|
||||||
|
TAR_OPTIONS+=--transform='s,udev-$(PKG_VERSION),$(PKG_NAME)-$(PKG_VERSION),'
|
||||||
|
|
||||||
|
include $(INCLUDE_DIR)/package.mk |
||||||
|
|
||||||
|
define Package/udevtrigger |
||||||
|
SECTION:=base
|
||||||
|
CATEGORY:=Base system
|
||||||
|
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)" \
|
||||||
|
udevtrigger
|
||||||
|
endef |
||||||
|
|
||||||
|
define Package/udevtrigger/install |
||||||
|
$(INSTALL_DIR) $(1)/sbin
|
||||||
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/udevtrigger $(1)/sbin/
|
||||||
|
endef |
||||||
|
|
||||||
|
$(eval $(call BuildPackage,udevtrigger)) |
@ -0,0 +1,22 @@ |
|||||||
|
Index: udev-106/Makefile
|
||||||
|
===================================================================
|
||||||
|
--- udev-106.orig/Makefile 2007-06-04 13:22:17.765154568 +0200
|
||||||
|
+++ udev-106/Makefile 2007-06-04 13:22:17.831144536 +0200
|
||||||
|
@@ -113,7 +113,7 @@
|
||||||
|
AR = $(CROSS_COMPILE)ar
|
||||||
|
RANLIB = $(CROSS_COMPILE)ranlib
|
||||||
|
|
||||||
|
-CFLAGS = -g -Wall -pipe -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64
|
||||||
|
+CFLAGS = -Wall -pipe -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64
|
||||||
|
WARNINGS = -Wstrict-prototypes -Wsign-compare -Wshadow \
|
||||||
|
-Wchar-subscripts -Wmissing-declarations -Wnested-externs \
|
||||||
|
-Wpointer-arith -Wcast-align -Wsign-compare -Wmissing-prototypes
|
||||||
|
@@ -130,7 +130,7 @@
|
||||||
|
|
||||||
|
# if DEBUG is enabled, then we do not strip
|
||||||
|
ifeq ($(strip $(DEBUG)),true)
|
||||||
|
- CFLAGS += -DDEBUG
|
||||||
|
+ CFLAGS += -g -DDEBUG
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(strip $(USE_GCOV)),true)
|
@ -0,0 +1,12 @@ |
|||||||
|
Index: udev-106/udevtrigger.c
|
||||||
|
===================================================================
|
||||||
|
--- udev-106.orig/udevtrigger.c 2007-06-04 13:22:17.745157608 +0200
|
||||||
|
+++ udev-106/udevtrigger.c 2007-06-04 13:22:18.022115504 +0200
|
||||||
|
@@ -446,7 +446,6 @@
|
||||||
|
};
|
||||||
|
|
||||||
|
logging_init("udevtrigger");
|
||||||
|
- udev_config_init();
|
||||||
|
dbg("version %s", UDEV_VERSION);
|
||||||
|
sysfs_init();
|
||||||
|
|
Loading…
Reference in new issue