aboutsummaryrefslogtreecommitdiff
path: root/straper/db/public/boot/etc-kernel/preinst.d/dkms
blob: bfc175d05245d81f67fcd43082009fc61d5c05fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

# This script is triggered when the kernel (linux-image) package is being
# installed/upgraded.  We're passed the version of the kernel being installed.
inst_kern=$1

if command -v dkms > /dev/null; then
    dkms kernel_preinst -k "$inst_kern"
fi

exit 0