2023-01-25 13:09:22 +00:00
|
|
|
#!/bin/sh
|
2022-11-17 14:26:57 +00:00
|
|
|
|
|
|
|
# Purpose: Remove Realtek out-of-kernel USB WiFi adapter drivers.
|
|
|
|
#
|
|
|
|
# Supports dkms and non-dkms removals.
|
2023-01-22 07:52:24 +00:00
|
|
|
#
|
|
|
|
# To make this file executable:
|
|
|
|
#
|
2023-02-12 23:36:39 +00:00
|
|
|
# $ chmod +x remove-driver.sh
|
2023-01-22 07:52:24 +00:00
|
|
|
#
|
|
|
|
# To execute this file:
|
|
|
|
#
|
2023-02-12 23:36:39 +00:00
|
|
|
# $ sudo ./remove-driver.sh
|
|
|
|
#
|
|
|
|
# or
|
|
|
|
#
|
|
|
|
# $ sudo sh remove-driver.sh
|
2023-01-22 07:52:24 +00:00
|
|
|
#
|
2023-01-08 05:16:17 +00:00
|
|
|
# Copyright(c) 2023 Nick Morrow
|
2022-12-08 14:10:21 +00:00
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of version 2 of the GNU General Public License as
|
|
|
|
# published by the Free Software Foundation.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful, but
|
|
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
|
2022-11-17 14:26:57 +00:00
|
|
|
SCRIPT_NAME="remove-driver.sh"
|
2023-01-26 17:52:27 +00:00
|
|
|
SCRIPT_VERSION="20230126"
|
2022-11-17 14:26:57 +00:00
|
|
|
MODULE_NAME="8821cu"
|
|
|
|
DRV_VERSION="5.12.0.4"
|
|
|
|
|
|
|
|
KARCH="$(uname -m)"
|
2023-01-30 18:09:56 +00:00
|
|
|
KVER="$(uname -r)"
|
2022-11-17 14:26:57 +00:00
|
|
|
MODDESTDIR="/lib/modules/${KVER}/kernel/drivers/net/wireless/"
|
|
|
|
|
|
|
|
DRV_NAME="rtl${MODULE_NAME}"
|
2022-12-08 14:10:21 +00:00
|
|
|
OPTIONS_FILE="${MODULE_NAME}.conf"
|
2022-11-17 14:26:57 +00:00
|
|
|
|
2023-01-26 17:52:27 +00:00
|
|
|
# check to ensure sudo was used to start the script
|
2023-01-25 13:09:22 +00:00
|
|
|
if [ "$(id -u)" -ne 0 ]; then
|
2022-11-17 14:26:57 +00:00
|
|
|
echo "You must run this script with superuser (root) privileges."
|
|
|
|
echo "Try: \"sudo ./${SCRIPT_NAME}\""
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# support for the NoPrompt option allows non-interactive use of this script
|
|
|
|
NO_PROMPT=0
|
|
|
|
# get the script options
|
2023-01-25 11:35:30 +00:00
|
|
|
while [ $# -gt 0 ]; do
|
2022-11-17 14:26:57 +00:00
|
|
|
case $1 in
|
|
|
|
NoPrompt)
|
|
|
|
NO_PROMPT=1 ;;
|
|
|
|
*h|*help|*)
|
|
|
|
echo "Syntax $0 <NoPrompt>"
|
|
|
|
echo " NoPrompt - noninteractive mode"
|
|
|
|
echo " -h|--help - Show help"
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
|
2023-01-26 17:52:27 +00:00
|
|
|
echo ": ---------------------------"
|
|
|
|
|
2022-11-17 14:26:57 +00:00
|
|
|
# displays script name and version
|
2023-01-10 04:57:46 +00:00
|
|
|
echo ": ${SCRIPT_NAME} v${SCRIPT_VERSION}"
|
2022-11-17 14:26:57 +00:00
|
|
|
|
2023-01-26 17:52:27 +00:00
|
|
|
# information that helps with bug reports
|
|
|
|
|
|
|
|
# display architecture
|
2023-01-30 18:09:56 +00:00
|
|
|
echo ": ${KARCH} (architecture)"
|
2023-01-26 17:52:27 +00:00
|
|
|
|
|
|
|
# display kernel version
|
2023-01-27 21:45:56 +00:00
|
|
|
echo ": ${KVER} (kernel version)"
|
2023-01-26 17:52:27 +00:00
|
|
|
|
|
|
|
echo ": ---------------------------"
|
|
|
|
|
2022-12-30 18:36:53 +00:00
|
|
|
# check for and remove non-dkms installations
|
|
|
|
# standard naming
|
2023-01-25 13:09:22 +00:00
|
|
|
if [ -f "${MODDESTDIR}${MODULE_NAME}.ko" ]; then
|
2022-12-30 18:36:53 +00:00
|
|
|
echo "Removing a non-dkms installation: ${MODDESTDIR}${MODULE_NAME}.ko"
|
2023-01-26 17:52:27 +00:00
|
|
|
rm -f "${MODDESTDIR}"${MODULE_NAME}.ko
|
2023-01-25 13:09:22 +00:00
|
|
|
/sbin/depmod -a "${KVER}"
|
2022-11-17 14:26:57 +00:00
|
|
|
fi
|
|
|
|
|
2022-12-30 18:36:53 +00:00
|
|
|
# check for and remove non-dkms installations
|
|
|
|
# with rtl added to module name (PClinuxOS)
|
2023-01-25 13:09:22 +00:00
|
|
|
if [ -f "${MODDESTDIR}rtl${MODULE_NAME}.ko" ]; then
|
2022-12-30 18:36:53 +00:00
|
|
|
echo "Removing a non-dkms installation: ${MODDESTDIR}rtl${MODULE_NAME}.ko"
|
2023-01-26 17:52:27 +00:00
|
|
|
rm -f "${MODDESTDIR}"rtl${MODULE_NAME}.ko
|
2023-01-25 13:09:22 +00:00
|
|
|
/sbin/depmod -a "${KVER}"
|
2022-12-30 18:36:53 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# check for and remove non-dkms installations
|
|
|
|
# with compressed module in a unique non-standard location (Armbian)
|
|
|
|
# Example: /usr/lib/modules/5.15.80-rockchip64/kernel/drivers/net/wireless/rtl8821cu/8821cu.ko.xz
|
|
|
|
# Dear Armbiam, this is a really bad idea.
|
2023-01-25 13:09:22 +00:00
|
|
|
if [ -f "/usr/lib/modules/${KVER}/kernel/drivers/net/wireless/${DRV_NAME}/${MODULE_NAME}.ko.xz" ]; then
|
2022-12-30 18:36:53 +00:00
|
|
|
echo "Removing a non-dkms installation: /usr/lib/modules/${KVER}/kernel/drivers/net/wireless/${DRV_NAME}/${MODULE_NAME}.ko.xz"
|
2023-01-26 17:52:27 +00:00
|
|
|
rm -f /usr/lib/modules/"${KVER}"/kernel/drivers/net/wireless/${DRV_NAME}/${MODULE_NAME}.ko.xz
|
2023-01-25 13:09:22 +00:00
|
|
|
/sbin/depmod -a "${KVER}"
|
2022-12-30 18:36:53 +00:00
|
|
|
fi
|
|
|
|
|
2022-11-28 18:27:45 +00:00
|
|
|
# determine if dkms is installed and run the appropriate routines
|
2023-01-25 11:35:30 +00:00
|
|
|
if command -v dkms >/dev/null 2>&1; then
|
2022-12-01 21:21:49 +00:00
|
|
|
echo "Removing a dkms installation."
|
2022-11-28 18:27:45 +00:00
|
|
|
# 2>/dev/null suppresses the output of dkms
|
|
|
|
dkms remove -m ${DRV_NAME} -v ${DRV_VERSION} --all 2>/dev/null
|
|
|
|
RESULT=$?
|
|
|
|
#echo "Result=${RESULT}"
|
|
|
|
|
|
|
|
# RESULT will be 3 if there are no instances of module to remove
|
|
|
|
# however we still need to remove various files or the install script
|
|
|
|
# may complain.
|
2023-01-25 13:09:22 +00:00
|
|
|
if [ "$RESULT" = "0" ] || [ "$RESULT" = "3" ]; then
|
|
|
|
if [ "$RESULT" = "0" ]; then
|
2022-11-28 18:27:45 +00:00
|
|
|
echo "${DRV_NAME}/${DRV_VERSION} has been removed"
|
|
|
|
fi
|
|
|
|
else
|
2022-12-26 02:51:26 +00:00
|
|
|
echo "An error occurred. dkms remove error: ${RESULT}"
|
2022-11-28 18:27:45 +00:00
|
|
|
echo "Please report this error."
|
|
|
|
exit $RESULT
|
2022-11-17 14:26:57 +00:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2022-11-28 18:27:45 +00:00
|
|
|
echo "Removing ${OPTIONS_FILE} from /etc/modprobe.d"
|
|
|
|
rm -f /etc/modprobe.d/${OPTIONS_FILE}
|
|
|
|
echo "Removing source files from /usr/src/${DRV_NAME}-${DRV_VERSION}"
|
|
|
|
rm -rf /usr/src/${DRV_NAME}-${DRV_VERSION}
|
|
|
|
make clean >/dev/null 2>&1
|
|
|
|
echo "The driver was removed successfully."
|
|
|
|
echo "You may now delete the driver directory if desired."
|
|
|
|
|
2022-12-26 02:51:26 +00:00
|
|
|
# if NoPrompt is not used, ask user some questions
|
2023-01-25 11:35:30 +00:00
|
|
|
if [ $NO_PROMPT -ne 1 ]; then
|
2023-01-30 18:09:56 +00:00
|
|
|
printf "Do you want to reboot now? (recommended) [y/N] "
|
2023-01-25 13:09:22 +00:00
|
|
|
read -r REPLY
|
2023-01-25 14:33:34 +00:00
|
|
|
case "$REPLY" in
|
|
|
|
[yY]*) reboot ;;
|
|
|
|
esac
|
2022-11-17 14:26:57 +00:00
|
|
|
fi
|