From e4c31c04c821439f5003f864324189a54d4b17e7 Mon Sep 17 00:00:00 2001 From: Seung-Woo Kim Date: Mon, 30 Mar 2020 14:02:54 +0900 Subject: [PATCH] build: add modules_install To install kernel modules with its release version path, add build for modules_install. Change-Id: Idcb945be287e43eb2f66cefa06849b6e352115a9 Signed-off-by: Seung-Woo Kim Signed-off-by: Konrad Kuchciak --- kernel/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/kernel/Makefile b/kernel/Makefile index 99f0f73..a4bdc22 100644 --- a/kernel/Makefile +++ b/kernel/Makefile @@ -7,5 +7,8 @@ proc-tsm_SOURCES = proc-tsm.c all: make -C $(KERNELDIR) M=$(PWD) modules +modules_install: + make -C $(KERNELDIR) M=$(PWD) INSTALL_MOD_STRIP=$(INSTALL_MOD_STRIP) INSTALL_MOD_PATH=$(PWD)/../$(INSTALL_MOD_PATH) modules_install + clean: make -C $(KERNELDIR) M=$(PWD) clean -- 2.34.1