From: jow Date: Thu, 18 Jul 2013 15:41:09 +0000 (+0000) Subject: include: modify kernel.mk to build empty kmod packages if the referenced symbols... X-Git-Url: https://git.archive.openwrt.org/?p=openwrt.git;a=commitdiff_plain;h=48d92e595e061e46a09a974ae5be6fb6da6cb3d2 include: modify kernel.mk to build empty kmod packages if the referenced symbols do not exist in the config git-svn-id: svn://svn.openwrt.org/openwrt/trunk@37400 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/include/kernel.mk b/include/kernel.mk index cbf342a0d2..5442c9153f 100644 --- a/include/kernel.mk +++ b/include/kernel.mk @@ -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)))