/usr/src/spl-0.6.5.9/scripts/dkms.postbuild is in spl-dkms 0.6.5.9-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | #!/bin/sh
PROG=$0
while getopts "a:k:n:t:v:" opt; do
case $opt in
a) arch=$OPTARG ;;
k) kver=$OPTARG ;;
n) pkgname=$OPTARG ;;
t) tree=$OPTARG ;;
v) pkgver=$OPTARG ;;
esac
done
if [ -z "${arch}" -o -z "${kver}" -o -z "${pkgname}" -o \
-z "${tree}" -o -z "${pkgver}" ]; then
echo "Usage: $PROG -a <arch> -k <kver> -n <pkgname>" \
"-t <tree> -v <pkgver>"
exit 1
fi
cp ${tree}/${pkgname}/${pkgver}/build/spl_config.h \
${tree}/${pkgname}/${pkgver}/build/module/Module.symvers \
${tree}/${pkgname}/${pkgver}/${kver}/${arch}/
|