88x2bu-20210702/install-driver.sh

130 lines
3.0 KiB
Bash
Raw Normal View History

2021-10-27 12:51:22 -05:00
#!/bin/bash
SCRIPT_NAME="install-driver.sh"
2022-01-16 11:46:39 -06:00
SCRIPT_VERSION="20220108"
2021-10-27 12:51:22 -05:00
DRV_NAME="rtl88x2bu"
DRV_VERSION="5.13.1"
OPTIONS_FILE="88x2bu.conf"
DRV_DIR="$(pwd)"
KRNL_VERSION="$(uname -r)"
clear
2021-12-14 07:09:23 -06:00
# support for NoPrompt allows non-interactive use of this script
NO_PROMPT=0
# get the options
2021-10-27 12:51:22 -05:00
while [ $# -gt 0 ]
do
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
# check to ensure sudo was used
if [[ $EUID -ne 0 ]]
then
echo "You must run this script with superuser (root) privileges."
echo "Try: \"sudo ./${SCRIPT_NAME}\""
exit 1
fi
# check for previous installation
if [[ -d "/usr/src/${DRV_NAME}-${DRV_VERSION}" ]]
then
echo "It appears that this driver may already be installed."
2021-12-14 07:09:23 -06:00
echo "You will need to run the following before reattempting installation."
2021-10-27 12:51:22 -05:00
echo "$ sudo ./remove-driver.sh"
exit 1
fi
2022-01-16 11:46:39 -06:00
# information that helps with bug reports
# displays script name and version
echo "Running ${SCRIPT_NAME} version ${SCRIPT_VERSION}"
# distro
hostnamectl | grep 'Operating System' | sed 's/ Operating System: //'
# kernel
uname -r
# architecture - for ARM: aarch64 = 64 bit, armv7l = 32 bit
uname -m
2022-01-22 19:08:52 -06:00
# getconf LONG_BIT (need to work on this)
2022-01-16 11:46:39 -06:00
2021-10-27 12:51:22 -05:00
echo "Starting installation..."
# the add command requires source in /usr/src/${DRV_NAME}-${DRV_VERSION}
echo "Copying source files to: /usr/src/${DRV_NAME}-${DRV_VERSION}"
cp -rf "${DRV_DIR}" /usr/src/${DRV_NAME}-${DRV_VERSION}
echo "Copying ${OPTIONS_FILE} to: /etc/modprobe.d"
cp -f ${OPTIONS_FILE} /etc/modprobe.d
dkms add -m ${DRV_NAME} -v ${DRV_VERSION}
RESULT=$?
if [[ "$RESULT" != "0" ]]
then
echo "An error occurred. dkms add error = ${RESULT}"
echo "Please report this error."
2021-12-14 07:09:23 -06:00
echo "You will need to run the following before reattempting installation."
echo "$ sudo ./remove-driver.sh"
2021-10-27 12:51:22 -05:00
exit $RESULT
fi
dkms build -m ${DRV_NAME} -v ${DRV_VERSION}
RESULT=$?
if [[ "$RESULT" != "0" ]]
then
echo "An error occurred. dkms build error = ${RESULT}"
echo "Please report this error."
2021-12-14 07:09:23 -06:00
echo "You will need to run the following before reattempting installation."
echo "$ sudo ./remove-driver.sh"
2021-10-27 12:51:22 -05:00
exit $RESULT
fi
dkms install -m ${DRV_NAME} -v ${DRV_VERSION}
RESULT=$?
if [[ "$RESULT" != "0" ]]
then
echo "An error occurred. dkms install error = ${RESULT}"
echo "Please report this error."
2022-01-16 11:46:39 -06:00
echo "Please copy all screen output and paste it into the report."
2021-12-14 07:09:23 -06:00
echo "You will need to run the following before reattempting installation."
echo "$ sudo ./remove-driver.sh"
2021-10-27 12:51:22 -05:00
exit $RESULT
fi
echo "The driver was installed successfully."
2021-12-14 07:09:23 -06:00
# unblock wifi
2021-10-27 12:51:22 -05:00
rfkill unblock wlan
2021-12-14 07:09:23 -06:00
# if NoPrompt is not used, ask user some questions to complete installation
2021-10-27 12:51:22 -05:00
if [ $NO_PROMPT -ne 1 ]
then
read -p "Do you want to edit the driver options file now? [y/N] " -n 1 -r
2021-12-14 07:09:23 -06:00
echo
2021-10-27 12:51:22 -05:00
if [[ $REPLY =~ ^[Yy]$ ]]
then
nano /etc/modprobe.d/${OPTIONS_FILE}
fi
2021-12-14 07:09:23 -06:00
read -p "Do you want to reboot now? (recommended) [y/N] " -n 1 -r
echo
2021-10-27 12:51:22 -05:00
if [[ $REPLY =~ ^[Yy]$ ]]
then
reboot
fi
fi
exit 0