From: Petr Vorel Date: Tue, 21 Nov 2023 11:58:55 +0000 (+0100) Subject: kbuild: buildtar: always make modules_install X-Git-Tag: v6.8-rc1~31^2~40 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=b28d6ca1c9cbb64b0c8e435c0ff34d8c5d52812c;p=linux-2.6-block.git kbuild: buildtar: always make modules_install It is done for the same reasons as 4243afdb9326 does it for builddeb: always runs make modules to install modules.builtin* files, which are needed for e.g. initramfs-tools or LTP testing tool. Signed-off-by: Petr Vorel Signed-off-by: Masahiro Yamada --- diff --git a/scripts/package/buildtar b/scripts/package/buildtar index 8ac075dd0e9c..72c91a1b832f 100755 --- a/scripts/package/buildtar +++ b/scripts/package/buildtar @@ -37,11 +37,9 @@ fi # -# Try to install modules +# Install modules # -if grep -q '^CONFIG_MODULES=y' include/config/auto.conf; then - make ARCH="${ARCH}" -f ${srctree}/Makefile INSTALL_MOD_PATH="${tmpdir}" modules_install -fi +make ARCH="${ARCH}" -f ${srctree}/Makefile INSTALL_MOD_PATH="${tmpdir}" modules_install #