mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-24 00:48:27 +02:00
bugfixes for the kernel module packaging
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4236 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
8e66fbe159
commit
ce1a7b70f9
@ -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
|
||||
|
||||
|
@ -152,13 +152,11 @@ $(eval $(call KernelPackage,ipt-nathelper))
|
||||
define KernelPackage/ipt-imq
|
||||
TITLE:=Intermediate Queueing support
|
||||
DESCRIPTION:=Kernel support for Intermediate Queueing devices
|
||||
KCONFIG:=$(CONFIG_IMQ)
|
||||
KCONFIG:=$(CONFIG_IP_NF_TARGET_IMQ)
|
||||
SUBMENU:=$(NFMENU)
|
||||
FILES:= \
|
||||
$(MODULES_DIR)/kernel/net/ipv4/netfilter/*IMQ*.$(LINUX_KMOD_SUFFIX) \
|
||||
$(MODULES_DIR)/kernel/drivers/net/imq.$(LINUX_KMOD_SUFFIX)
|
||||
FILES:=$(MODULES_DIR)/kernel/net/ipv4/netfilter/*IMQ*.$(LINUX_KMOD_SUFFIX) $(MODULES_DIR)/kernel/drivers/net/imq.$(LINUX_KMOD_SUFFIX)
|
||||
endef
|
||||
$(eval $(call KernelPackage,imq))
|
||||
$(eval $(call KernelPackage,ipt-imq))
|
||||
|
||||
|
||||
define KernelPackage/ipt-queue
|
||||
|
Loading…
Reference in New Issue
Block a user