forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'rc-fixes' of git://git.kernel.org/pub/scm/linux/kernel/…
…git/mmarek/kbuild-2.6 * 'rc-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild-2.6: perf: Use make kernelversion instead of parsing the Makefile kbuild: Hack for depmod not handling X.Y versions kbuild: Move depmod call to a separate script kbuild: Fix <linux/version.h> for empty SUBLEVEL or PATCHLEVEL kbuild: Fix KERNELVERSION for empty SUBLEVEL or PATCHLEVEL kbuild: silence Nothing to be done for 'all' message
- Loading branch information
Showing
4 changed files
with
53 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
#!/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 ! "$DEPMOD" -V 2>/dev/null | grep -q module-init-tools; then | ||
echo "Warning: you may need to install module-init-tools" >&2 | ||
echo "See http://www.codemonkey.org.uk/docs/post-halloween-2.6.txt" >&2 | ||
sleep 1 | ||
fi | ||
|
||
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 | ||
mkdir -p .tmp_depmod/lib/modules/$KERNELRELEASE | ||
if "$DEPMOD" -b .tmp_depmod $KERNELRELEASE 2>/dev/null; then | ||
if test -e .tmp_depmod/lib/modules/$KERNELRELEASE/modules.dep -o \ | ||
-e .tmp_depmod/lib/modules/$KERNELRELEASE/modules.dep.bin; then | ||
depmod_hack_needed=false | ||
fi | ||
fi | ||
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters