1#!/bin/sh 2# 3# A depmod wrapper used by the toplevel Makefile 4 5if test $# -ne 2; then 6 echo "Usage: $0 /sbin/depmod <kernelrelease>" >&2 7 exit 1 8fi 9DEPMOD=$1 10KERNELRELEASE=$2 11 12if ! "$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 16fi 17 18if ! test -r System.map -a -x "$DEPMOD"; then 19 exit 0 20fi 21set -- -ae -F System.map 22if test -n "$INSTALL_MOD_PATH"; then 23 set -- "$@" -b "$INSTALL_MOD_PATH" 24fi 25exec "$DEPMOD" "$@" "$KERNELRELEASE" 26