Skip to content

Commit 9370868

Browse files
rddunlapgregkh
authored andcommitted
kbuild: make missing $DEPMOD a Warning instead of an Error
commit 914b087 upstream. When $DEPMOD is not found, only print a warning instead of exiting with an error message and error status: Warning: 'make modules_install' requires /sbin/depmod. Please install it. This is probably in the kmod package. Change the Error to a Warning because "not all build hosts for cross compiling Linux are Linux systems and are able to provide a working port of depmod, especially at the file patch /sbin/depmod." I.e., "make modules_install" may be used to copy/install the loadable modules files to a target directory on a build system and then transferred to an embedded device where /sbin/depmod is run instead of it being run on the build system. Fixes: 934193a ("kbuild: verify that $DEPMOD is installed") Signed-off-by: Randy Dunlap <[email protected]> Reported-by: H. Nikolaus Schaller <[email protected]> Cc: [email protected] Cc: Lucas De Marchi <[email protected]> Cc: Lucas De Marchi <[email protected]> Cc: Michal Marek <[email protected]> Cc: Jessica Yu <[email protected]> Cc: Chih-Wei Huang <[email protected]> Signed-off-by: Masahiro Yamada <[email protected]> Signed-off-by: Maxim Zhukov <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent 1e07507 commit 9370868

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/depmod.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ if ! test -r System.map ; then
1616
fi
1717

1818
if [ -z $(command -v $DEPMOD) ]; then
19-
echo "'make modules_install' requires $DEPMOD. Please install it." >&2
19+
echo "Warning: 'make modules_install' requires $DEPMOD. Please install it." >&2
2020
echo "This is probably in the kmod package." >&2
21-
exit 1
21+
exit 0
2222
fi
2323

2424
# older versions of depmod don't support -P <symbol-prefix>

0 commit comments

Comments
 (0)