From: nico Date: Tue, 8 Nov 2011 14:00:36 +0000 (+0000) Subject: include/kernel.mk: enhance built-in/missing modules detection when packaging kmods X-Git-Url: http://git.rohieb.name/openwrt.git/commitdiff_plain/d5d1a22de670e4582f45cf137861e2257cc7bdc6 include/kernel.mk: enhance built-in/missing modules detection when packaging kmods git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28856 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/include/kernel.mk b/include/kernel.mk index 0df0337c4..1591c3613 100644 --- a/include/kernel.mk +++ b/include/kernel.mk @@ -157,8 +157,11 @@ $(call KernelPackage/$(1)/config) if [ -e $$$$$$$$mod ]; then \ mkdir -p $$(1)/$(MODULES_SUBDIR) ; \ $(CP) -L $$$$$$$$mod $$(1)/$(MODULES_SUBDIR)/ ; \ + elif grep -q "$$$$$$$${mod##$(LINUX_DIR)/}" "$(LINUX_DIR)/modules.builtin"; then \ + echo "NOTICE: module '$$$$$$$$mod' is built-in."; \ else \ - echo "WARNING: module '$$$$$$$$mod' does not exist, is it built-in?" ; \ + echo "ERROR: module '$$$$$$$$mod' is missing."; \ + exit 1; \ fi; \ done; $(call ModuleAutoLoad,$(1),$$(1),$(AUTOLOAD))