hotplug: remove package
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Sun, 12 Dec 2010 21:53:59 +0000 (22:53 +0100)
committerPeter Korsgaard <jacmet@sunsite.dk>
Mon, 13 Dec 2010 23:38:47 +0000 (00:38 +0100)
The package has been marked deprecated, is no longer developed
upstream, so let's get rid of it.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
CHANGES
package/Config.in
package/hotplug/Config.in [deleted file]
package/hotplug/diethotplug-0.5.tar [deleted file]
package/hotplug/hotplug.mk [deleted file]

diff --git a/CHANGES b/CHANGES
index c4cf18c1c1caa002fd7e272318397d6d4e6d4d52..51ab28b91cea5ab2fedd231eb5336450189a252d 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -12,7 +12,7 @@
 
        New packages: dhrystone, fbgrab, lsuio, rsh-redone, whetstone
 
-       Removed packages: libfloat, microcom, ng-spice-rework
+       Removed packages: hotplug, libfloat, microcom, ng-spice-rework
 
        Issues resolved (http://bugs.uclibc.org):
 
index 0f3eca469966359c26fd95a4e7b41ac834d5195a..b590867b2782a1f405f3a37b95af8f9fd181cfbe 100644 (file)
@@ -170,7 +170,6 @@ source "package/gvfs/Config.in"
 source "package/hal/Config.in"
 if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
 source "package/hdparm/Config.in"
-source "package/hotplug/Config.in"
 endif
 source "package/hwdata/Config.in"
 source "package/i2c-tools/Config.in"
diff --git a/package/hotplug/Config.in b/package/hotplug/Config.in
deleted file mode 100644 (file)
index 48f1d71..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-config BR2_PACKAGE_HOTPLUG
-       bool "hotplug"
-       depends on BR2_DEPRECATED
-       help
-         Plug in new devices and use them immediately.
-
-         http://linux-hotplug.sourceforge.net/
diff --git a/package/hotplug/diethotplug-0.5.tar b/package/hotplug/diethotplug-0.5.tar
deleted file mode 100644 (file)
index 8088670..0000000
Binary files a/package/hotplug/diethotplug-0.5.tar and /dev/null differ
diff --git a/package/hotplug/hotplug.mk b/package/hotplug/hotplug.mk
deleted file mode 100644 (file)
index 0b354a8..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
-#############################################################
-#
-# hotplug support
-#
-#############################################################
-HOTPLUG_VERSION:=0.5
-HOTPLUG_SOURCE=package/hotplug/diethotplug-$(HOTPLUG_VERSION).tar
-HOTPLUG_SITE=$(BR2_KERNEL_MIRROR)/linux/utils/kernel/hotplug/
-HOTPLUG_DIR=$(BUILD_DIR)/diethotplug-$(HOTPLUG_VERSION)
-HOTPLUG_CAT=cat
-
-$(HOTPLUG_DIR): $(HOTPLUG_SOURCE)
-       $(HOTPLUG_CAT) $(HOTPLUG_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
-       toolchain/patch-kernel.sh $(HOTPLUG_DIR) package/hotplug/ hotplug\*.patch
-
-$(HOTPLUG_DIR)/hotplug: $(HOTPLUG_DIR)
-       $(MAKE) CROSS=$(TARGET_CROSS) DEBUG=false KLIBC=false \
-           KERNEL_INCLUDE_DIR=$(STAGING_DIR)/usr/include \
-           TARGET_DIR=$(TARGET_DIR) -C $(HOTPLUG_DIR)
-       $(STRIPCMD) $(HOTPLUG_DIR)/hotplug
-       touch -c $(HOTPLUG_DIR)/hotplug
-
-$(TARGET_DIR)/sbin/hotplug: $(HOTPLUG_DIR)/hotplug
-       cp $(HOTPLUG_DIR)/hotplug $(TARGET_DIR)/sbin/hotplug
-       touch -c $(TARGET_DIR)/sbin/hotplug
-
-hotplug: $(TARGET_DIR)/sbin/hotplug
-
-hotplug-source: $(HOTPLUG_SOURCE)
-
-hotplug-clean:
-       rm -f $(TARGET_DIR)/sbin/hotplug
-       -$(MAKE) -C $(HOTPLUG_DIR) clean
-
-hotplug-dirclean:
-       rm -rf $(HOTPLUG_DIR)
-
-#############################################################
-#
-# Toplevel Makefile options
-#
-#############################################################
-ifeq ($(BR2_PACKAGE_HOTPLUG),y)
-TARGETS+=hotplug
-endif