mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 17:51:43 +00:00
620c231c7a
scripts/depmod.sh checks for the output of '-V' expecting that it has module-init-tools in it. It's a hack to prevent users from using modutils instead of module-init-tools, that only works with 2.4.x kernels. This however prints an annoying warning for kmod tool, that is currently replacing module-init-tools. Rather than putting another check for kmod's version, just remove it since users of 2.4.x kernel are unlikely to upgrade to 3.x, and if they do, let depmod fail in that case because they should know what they are doing. Signed-off-by: Lucas De Marchi <lucas.demarchi@profusion.mobi> Acked-by: WANG Cong <amwang@redhat.com> Acked-By: Kay Sievers <kay.sievers@vrfy.org> Signed-off-by: Michal Marek <mmarek@suse.cz>
45 lines
1.1 KiB
Bash
Executable File
45 lines
1.1 KiB
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# 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 -a -x "$DEPMOD"; then
|
|
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
|