mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-31 16:38:12 +00:00
cedd1862be
Commit 436e980e2e
("kbuild: don't hardcode depmod path") stopped
hard-coding the path of depmod, but in the process caused trouble for
distributions that had that /sbin location, but didn't have it in the
PATH (generally because /sbin is limited to the super-user path).
Work around it for now by just adding /sbin to the end of PATH in the
depmod.sh script.
Reported-and-tested-by: Sedat Dilek <sedat.dilek@gmail.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
55 lines
1.4 KiB
Bash
Executable file
55 lines
1.4 KiB
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
|
|
|
|
# older versions of depmod require the version string to start with three
|
|
# numbers, so we cheat with a symlink here
|
|
depmod_hack_needed=true
|
|
tmp_dir=$(mktemp -d ${TMPDIR:-/tmp}/depmod.XXXXXX)
|
|
mkdir -p "$tmp_dir/lib/modules/$KERNELRELEASE"
|
|
if "$DEPMOD" -b "$tmp_dir" $KERNELRELEASE 2>/dev/null; then
|
|
if test -e "$tmp_dir/lib/modules/$KERNELRELEASE/modules.dep" -o \
|
|
-e "$tmp_dir/lib/modules/$KERNELRELEASE/modules.dep.bin"; then
|
|
depmod_hack_needed=false
|
|
fi
|
|
fi
|
|
rm -rf "$tmp_dir"
|
|
if $depmod_hack_needed; then
|
|
symlink="$INSTALL_MOD_PATH/lib/modules/99.98.$KERNELRELEASE"
|
|
ln -s "$KERNELRELEASE" "$symlink"
|
|
KERNELRELEASE=99.98.$KERNELRELEASE
|
|
fi
|
|
|
|
set -- -ae -F System.map
|
|
if test -n "$INSTALL_MOD_PATH"; then
|
|
set -- "$@" -b "$INSTALL_MOD_PATH"
|
|
fi
|
|
"$DEPMOD" "$@" "$KERNELRELEASE"
|
|
ret=$?
|
|
|
|
if $depmod_hack_needed; then
|
|
rm -f "$symlink"
|
|
fi
|
|
|
|
exit $ret
|