diff options
Diffstat (limited to 'package/hotplug/hotplug.mk')
-rw-r--r-- | package/hotplug/hotplug.mk | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/package/hotplug/hotplug.mk b/package/hotplug/hotplug.mk deleted file mode 100644 index 0b354a85c..000000000 --- a/package/hotplug/hotplug.mk +++ /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 |