Lines Matching refs:DKMS
4 # Script to register/build/unregister a kernel module with DKMS.
29 DKMS=`which dkms 2>/dev/null`
30 if [ -n "$DKMS" ]
34 echo "Uninstalling modules from DKMS"
37 $DKMS status -m $m | while read line
46 echo " removing old DKMS module $m version $version"
47 $DKMS remove -m $m -v $version --all
55 echo "Attempting to install using DKMS"
56 if $DKMS add -m $MODULE -v $VERSION &&
57 $DKMS build -m $MODULE -v $VERSION &&
58 $DKMS install -m $MODULE -v $VERSION --force
62 echo "Failed to install using DKMS, attempting to install without"