summarylogtreecommitdiffstats
path: root/dkms
blob: 38e9c7bf8f09e978d9e1ff5cfad68758dcdb64a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

build() {
    $(which dkms) autoinstall -k $KERNELVERSION
}

help() {
    cat <<HELPEOF
This hook simply utilize the autoinstall function of dkms. It does nothing to the initrd image.
HELPEOF
}