You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you for your debugging, but it seems these two files should be deleted, since these install and remove are deprecated and should be handled in the dkms.conf file with DEST_MODULE_LOCATION[#]= statement.
I found two small typos in the dkms scripts.
First, the dkms-install.sh script fails to copy the source to /usr/src. This may be fixed by making the change
cp -r ../${DRV_DIR} /usr/src/${DRV_NAME}-${DRV_VERSION}
cp -r ../${DRV_DIR}-${DRV_VERSION} /usr/src/${DRV_NAME}-${DRV_VERSION}
Second, the dkms-remove script fails to remove the files from /usr/src. This may be fixed by the change
dkms remove ${DRV_NAME}/${DRV_VERSION} --all
dkms remove -m ${DRV_NAME} -v ${DRV_VERSION} --all
After this all worked very well (thank you zebulon2!).
The text was updated successfully, but these errors were encountered: