include: modify kernel.mk to build empty kmod packages if the referenced symbols do not exist in the config

SVN-Revision: 37400
This commit is contained in:
Jo-Philipp Wich 2013-07-18 15:41:09 +00:00
parent a5f93fad9d
commit 6a559ff95e
1 changed files with 7 additions and 3 deletions

View File

@ -176,9 +176,13 @@ $(call KernelPackage/$(1)/config)
endif
$(if $(CONFIG_PACKAGE_kmod-$(1)),
else
compile: kmod-$(1)-unavailable
kmod-$(1)-unavailable:
@echo "WARNING: kmod-$(1) is not available in the kernel config" >&2
compile: $(1)-disabled
$(1)-disabled:
@echo "WARNING: kmod-$(1) is not available in the kernel config - generating empty package" >&2
define Package/kmod-$(1)/install
true
endef
)
endif
$$(eval $$(call BuildPackage,kmod-$(1)))