2018-08-25 16:21:32 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
if [[ $EUID -ne 0 ]]; then
|
|
|
|
echo "You must run this with superuser priviliges. Try \"sudo ./dkms-remove.sh\"" 2>&1
|
|
|
|
exit 1
|
|
|
|
else
|
|
|
|
echo "About to run dkms removal steps..."
|
|
|
|
fi
|
|
|
|
|
2019-05-21 22:19:32 +00:00
|
|
|
DRV_DIR="$(pwd)"
|
2018-08-25 16:21:32 +00:00
|
|
|
DRV_NAME=rtl8812au
|
2019-06-22 13:16:29 +00:00
|
|
|
DRV_VERSION=5.6.4.1
|
2018-08-25 16:21:32 +00:00
|
|
|
|
|
|
|
dkms remove ${DRV_NAME}/${DRV_VERSION} --all
|
|
|
|
rm -rf /usr/src/${DRV_NAME}-${DRV_VERSION}
|
|
|
|
|
|
|
|
RESULT=$?
|
|
|
|
if [[ "$RESULT" != "0" ]]; then
|
|
|
|
echo "Error occurred while running dkms remove." 2>&1
|
|
|
|
else
|
|
|
|
echo "Finished running dkms removal steps."
|
|
|
|
fi
|
|
|
|
|
|
|
|
exit $RESULT
|