diff options
author | Nicolas Thill <nico@openwrt.org> | 2007-09-03 08:58:14 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2007-09-03 08:58:14 +0000 |
commit | 8dc7ced4d4df85bc6cc77b625d54150a64f31bc6 (patch) | |
tree | e506b1895f22ee50f8e03e6806afc8384560e78a /include/kernel.mk | |
parent | e5e03321f9e942f75b8b150dc0bbdaba6b1c0c9b (diff) | |
download | mtk-20170518-8dc7ced4d4df85bc6cc77b625d54150a64f31bc6.zip mtk-20170518-8dc7ced4d4df85bc6cc77b625d54150a64f31bc6.tar.gz mtk-20170518-8dc7ced4d4df85bc6cc77b625d54150a64f31bc6.tar.bz2 |
require all CONFIG_* symbols listed in its KCONFIG to be set to m in order to actually build a kmod package, tweak and fix kernel package definitions.
SVN-Revision: 8591
Diffstat (limited to 'include/kernel.mk')
-rw-r--r-- | include/kernel.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/kernel.mk b/include/kernel.mk index 519ea42..a0f256b 100644 --- a/include/kernel.mk +++ b/include/kernel.mk @@ -104,7 +104,8 @@ $(call KernelPackage/$(1)/description) endef endif - ifneq ($(if $(KCONFIG),$(filter m,$(foreach c,$(filter-out %=y %=n %=m,$(KCONFIG)),$($(c)))),.),) + # check that all CONFIG_* symbols in $(KCONFIG) are set to 'm' + ifeq ($(filter-out m,$(foreach c,$(filter-out %=y %=n %=m,$(KCONFIG)),$(if $($(c)),$($(c)),n))),) ifneq ($(strip $(FILES)),) define Package/kmod-$(1)/install mkdir -p $$(1)/lib/modules/$(LINUX_VERSION) |