mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
4d15c9fa05
Remove hack for ancient version of module-init-tools that was added in Linux 3.0. Since then module-init-tools was replaced with kmod. This hack adds an additional indirection, and causes confusing errors to be printed when depmod fails. Reverts commit8fc62e5942
("kbuild: Do not write to builddir in modules_install") Reverts commitbfe5424a8b
("kbuild: Hack for depmod not handling X.Y versions") Link: https://lore.kernel.org/linux-modules/CAK7LNAQMs3QBYfWcLkmOQdbbq7cj=7wWbK=AWhdTC2rAsKHXzQ@mail.gmail.com/ Signed-off-by: Michal Suchanek <msuchanek@suse.de> Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
31 lines
728 B
Bash
Executable File
31 lines
728 B
Bash
Executable File
#!/bin/sh
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# A depmod wrapper used by the toplevel Makefile
|
|
|
|
if test $# -ne 2; then
|
|
echo "Usage: $0 /sbin/depmod <kernelrelease>" >&2
|
|
exit 1
|
|
fi
|
|
DEPMOD=$1
|
|
KERNELRELEASE=$2
|
|
|
|
if ! test -r System.map ; then
|
|
echo "Warning: modules_install: missing 'System.map' file. Skipping depmod." >&2
|
|
exit 0
|
|
fi
|
|
|
|
# legacy behavior: "depmod" in /sbin, no /sbin in PATH
|
|
PATH="$PATH:/sbin"
|
|
if [ -z $(command -v $DEPMOD) ]; then
|
|
echo "Warning: 'make modules_install' requires $DEPMOD. Please install it." >&2
|
|
echo "This is probably in the kmod package." >&2
|
|
exit 0
|
|
fi
|
|
|
|
set -- -ae -F System.map
|
|
if test -n "$INSTALL_MOD_PATH"; then
|
|
set -- "$@" -b "$INSTALL_MOD_PATH"
|
|
fi
|
|
exec "$DEPMOD" "$@" "$KERNELRELEASE"
|