Michal Marek | fc4da9a | 2011-06-09 15:35:22 +0200 | [diff] [blame^] | 1 | #!/bin/sh |
| 2 | # |
| 3 | # A depmod wrapper used by the toplevel Makefile |
| 4 | |
| 5 | if test $# -ne 2; then |
| 6 | echo "Usage: $0 /sbin/depmod <kernelrelease>" >&2 |
| 7 | exit 1 |
| 8 | fi |
| 9 | DEPMOD=$1 |
| 10 | KERNELRELEASE=$2 |
| 11 | |
| 12 | if ! "$DEPMOD" -V 2>/dev/null | grep -q module-init-tools; then |
| 13 | echo "Warning: you may need to install module-init-tools" >&2 |
| 14 | echo "See http://www.codemonkey.org.uk/docs/post-halloween-2.6.txt" >&2 |
| 15 | sleep 1 |
| 16 | fi |
| 17 | |
| 18 | if ! test -r System.map -a -x "$DEPMOD"; then |
| 19 | exit 0 |
| 20 | fi |
| 21 | set -- -ae -F System.map |
| 22 | if test -n "$INSTALL_MOD_PATH"; then |
| 23 | set -- "$@" -b "$INSTALL_MOD_PATH" |
| 24 | fi |
| 25 | exec "$DEPMOD" "$@" "$KERNELRELEASE" |