From b99cbf52672a7a00833a58af5cfd3ff768e362db Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Sun, 23 Jul 2006 14:21:26 +0000 Subject: bugfixes for the kernel module packaging SVN-Revision: 4236 --- openwrt/package/kernel/Makefile | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) (limited to 'openwrt/package/kernel/Makefile') diff --git a/openwrt/package/kernel/Makefile b/openwrt/package/kernel/Makefile index 39978ab..c977501 100644 --- a/openwrt/package/kernel/Makefile +++ b/openwrt/package/kernel/Makefile @@ -60,10 +60,6 @@ define KernelPackage $(eval $(call KernelPackage/$(1))) $(eval $(call KernelPackage/$(1)/$(KERNEL))) - ifneq ($(findstring m,$(KCONFIG)),m) - CONFIG_PACKAGE_kmod-$(1):= - endif - define Package/kmod-$(1) TITLE:=$(TITLE) SECTION:=kernel @@ -75,11 +71,13 @@ define KernelPackage $(call KernelPackage/$(1)/$(KERNEL)) endef - define Package/kmod-$(1)/install - mkdir -p $$(1)/lib/modules/$(LINUX_VERSION) - $(CP) $(FILES) $$(1)/lib/modules/$(LINUX_VERSION)/ - $(call ModuleAutoLoad,$(1),$$(1),$(AUTOLOAD)) - endef + ifeq ($(findstring m,$(KCONFIG)),m) + define Package/kmod-$(1)/install + mkdir -p $$(1)/lib/modules/$(LINUX_VERSION) + $(CP) $$(FILES) $$(1)/lib/modules/$(LINUX_VERSION)/ + $(call ModuleAutoLoad,$(1),$$(1),$(AUTOLOAD)) + endef + endif $$(eval $$(call BuildPackage,kmod-$(1))) endef -- cgit v1.1