Commit b28d6ca1 authored by Petr Vorel's avatar Petr Vorel Committed by Masahiro Yamada
Browse files

kbuild: buildtar: always make modules_install



It is done for the same reasons as 4243afdb 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: default avatarPetr Vorel <pvorel@suse.cz>
Signed-off-by: default avatarMasahiro Yamada <masahiroy@kernel.org>
parent 884f55f1
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -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


#