batman-adv: Allow to disable depmod

Message ID 20181206063620.5191-1-sven@narfation.org (mailing list archive)
State Accepted, archived
Commit 880190ad7c5aab3c868324db46ba7f853aa8e741
Delegated to: Simon Wunderlich
Headers
Series batman-adv: Allow to disable depmod |

Commit Message

Sven Eckelmann Dec. 6, 2018, 6:36 a.m. UTC
  On some build systems, the actual call to depmod is not expected and only
the installation of the module is expected. Just allow to overwrite this
call with a different (dummy) executable.

Signed-off-by: Sven Eckelmann <sven@narfation.org>
---
 Makefile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
  

Patch

diff --git a/Makefile b/Makefile
index d665c0ba..08ac8f65 100644
--- a/Makefile
+++ b/Makefile
@@ -45,6 +45,7 @@  export KERNELPATH
 RM ?= rm -f
 CP := cp -fpR
 LN := ln -sf
+DEPMOD := depmod -a
 
 REVISION= $(shell	if [ -d "$(PWD)/.git" ]; then \
 				echo $$(git --git-dir="$(PWD)/.git" describe --always --dirty --match "v*" |sed 's/^v//' 2> /dev/null || echo "[unknown]"); \
@@ -90,7 +91,7 @@  clean:
 
 install: config
 	$(MAKE) -C $(KERNELPATH) $(BUILD_FLAGS) modules_install
-	depmod -a
+	$(DEPMOD)
 
 config:
 	$(PWD)/gen-compat-autoconf.sh $(PWD)/compat-autoconf.h