diff options
author | Michal Marek <mmarek@suse.cz> | 2011-06-09 15:35:22 +0200 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2011-06-09 23:05:54 +0200 |
commit | fc4da9a3e68b1f64237fafda084f61067f568a99 (patch) | |
tree | fcbcdde8bcd1b1bc85a7c0daba00971bce9c3cb1 /scripts | |
parent | 78d3bb4483ba1b206dbaaf209219ed517b01f7da (diff) |
kbuild: Move depmod call to a separate script
Do not bloat the Makefile with multiline shell statements. No
user-visible change intended.
Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/depmod.sh | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/scripts/depmod.sh b/scripts/depmod.sh new file mode 100755 index 000000000000..9f205dafed36 --- /dev/null +++ b/scripts/depmod.sh @@ -0,0 +1,25 @@ +#!/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 +set -- -ae -F System.map +if test -n "$INSTALL_MOD_PATH"; then + set -- "$@" -b "$INSTALL_MOD_PATH" +fi +exec "$DEPMOD" "$@" "$KERNELRELEASE" |