disable kmod packages where the KCONFIG options are =y
SVN-Revision: 8086
This commit is contained in:
parent
075883e85b
commit
7ff45c5adb
1 changed files with 9 additions and 7 deletions
|
@ -97,13 +97,15 @@ define KernelPackage
|
||||||
$(call KernelPackage/$(1)/$(BOARD)-$(KERNEL))
|
$(call KernelPackage/$(1)/$(BOARD)-$(KERNEL))
|
||||||
endef
|
endef
|
||||||
|
|
||||||
ifneq ($(strip $(FILES)),)
|
ifeq ($(filter y,$(foreach c,$(filter-out %=y %=n %=m,$(KCONFIG)),$($(c)))),)
|
||||||
define Package/kmod-$(1)/install
|
ifneq ($(strip $(FILES)),)
|
||||||
mkdir -p $$(1)/lib/modules/$(LINUX_VERSION)
|
define Package/kmod-$(1)/install
|
||||||
$(CP) -L $$(FILES) $$(1)/lib/modules/$(LINUX_VERSION)/
|
mkdir -p $$(1)/lib/modules/$(LINUX_VERSION)
|
||||||
$(call ModuleAutoLoad,$(1),$$(1),$(AUTOLOAD))
|
$(CP) -L $$(FILES) $$(1)/lib/modules/$(LINUX_VERSION)/
|
||||||
$(call KernelPackage/$(1)/install,$$(1))
|
$(call ModuleAutoLoad,$(1),$$(1),$(AUTOLOAD))
|
||||||
endef
|
$(call KernelPackage/$(1)/install,$$(1))
|
||||||
|
endef
|
||||||
|
endif
|
||||||
endif
|
endif
|
||||||
$$(eval $$(call BuildPackage,kmod-$(1)))
|
$$(eval $$(call BuildPackage,kmod-$(1)))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue