From: Rom Lemarchand Date: Fri, 6 Feb 2015 00:07:59 +0000 (-0800) Subject: ANDROID: kbuild: make it possible to specify the module output dir X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=ef1b6e4e1e04f0f474aea00d2b9f51a8391001fc;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git ANDROID: kbuild: make it possible to specify the module output dir Make modinst_dir user-defined on the command line. This allows to do things like: make MODLIB=output/ modinst_dir=. modules_install to ensure all the .ko are in the output/ directory. Change-Id: I2bc007eea27ee744d35289e26e4a8ac43ba04151 Signed-off-by: Rom Lemarchand --- diff --git a/scripts/Makefile.modinst b/scripts/Makefile.modinst index 51ca0244fc8a..96524c6fa7a5 100644 --- a/scripts/Makefile.modinst +++ b/scripts/Makefile.modinst @@ -30,7 +30,7 @@ quiet_cmd_modules_install = INSTALL $@ INSTALL_MOD_DIR ?= extra ext-mod-dir = $(INSTALL_MOD_DIR)$(subst $(patsubst %/,%,$(KBUILD_EXTMOD)),,$(@D)) -modinst_dir = $(if $(KBUILD_EXTMOD),$(ext-mod-dir),kernel/$(@D)) +modinst_dir ?= $(if $(KBUILD_EXTMOD),$(ext-mod-dir),kernel/$(@D)) $(modules): $(call cmd,modules_install,$(MODLIB)/$(modinst_dir))