-
Notifications
You must be signed in to change notification settings - Fork 88
/
remove-driver.sh
executable file
·46 lines (38 loc) · 1.12 KB
/
remove-driver.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/bin/bash
SCRIPT_NAME="remove-driver.sh"
SCRIPT_VERSION="20210917"
DRV_NAME="rtl8812au"
DRV_VERSION="5.13.6"
OPTIONS_FILE="8812au.conf"
if [[ $EUID -ne 0 ]]
then
echo "You must run this script with superuser (root) privileges."
echo "Try \"sudo ./${SCRIPT_NAME}\""
exit 1
fi
echo "Starting removal..."
dkms remove -m ${DRV_NAME} -v ${DRV_VERSION} --all
RESULT=$?
# RESULT will be 3 if there are no instances of module to remove
# however we still need to remove the files or the install script
# will complain.
if [[ ("$RESULT" = "0")||("$RESULT" = "3") ]]
then
echo "Deleting ${OPTIONS_FILE} from /etc/modprobe.d"
rm -f /etc/modprobe.d/${OPTIONS_FILE}
echo "Deleting source files from /usr/src/${DRV_NAME}-${DRV_VERSION}"
rm -rf /usr/src/${DRV_NAME}-${DRV_VERSION}
echo "The driver was removed successfully."
echo "Info: You may now delete the driver directory if desired."
else
echo "An error occurred. dkms remove error = ${RESULT}"
echo "Please report this error."
exit $RESULT
fi
read -p "Are you ready to reboot now? [y/N] " -n 1 -r
echo # move to a new line
if [[ $REPLY =~ ^[Yy]$ ]]
then
reboot
fi
exit 0