drm/panthor: Don't add write fences to the shared BOs
[drm/drm-misc.git] / scripts / depmod.sh
blobe22da27fe13eb35fccb3a34cfc90b558e3adc31f
1 #!/bin/sh
2 # SPDX-License-Identifier: GPL-2.0
4 # A depmod wrapper
6 if test $# -ne 1; then
7 echo "Usage: $0 <kernelrelease>" >&2
8 exit 1
9 fi
11 KERNELRELEASE=$1
13 : ${DEPMOD:=depmod}
15 if ! test -r System.map ; then
16 echo "Warning: modules_install: missing 'System.map' file. Skipping depmod." >&2
17 exit 0
20 # legacy behavior: "depmod" in /sbin, no /sbin in PATH
21 PATH="$PATH:/sbin"
22 if [ -z $(command -v $DEPMOD) ]; then
23 echo "Warning: 'make modules_install' requires $DEPMOD. Please install it." >&2
24 echo "This is probably in the kmod package." >&2
25 exit 0
28 set -- -ae -F System.map
29 if test -n "$INSTALL_MOD_PATH"; then
30 set -- "$@" -b "$INSTALL_MOD_PATH"
32 exec "$DEPMOD" "$@" "$KERNELRELEASE"