From 571be0b9cc5fb7a8dabd4520201cdee2644126a9 Mon Sep 17 00:00:00 2001 From: morrownr Date: Sun, 21 Aug 2022 23:19:27 -0500 Subject: [PATCH] various updates --- README.md | 3 +-- install-driver-no-dkms.sh | 7 ++++--- install-driver.sh | 8 +++++--- 3 files changed, 10 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 90abe47..f2d8ee9 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,6 @@ sudo uname -a; mokutil --sb-state; lsusb; rfkill list all; dkms status; iw dev ## Linux Driver for USB WiFi Adapters that are based on the RTL8812BU and RTL8822BU Chipsets - v5.13.1 (Realtek) (20210702) plus updates from the Linux community -- 5,000+ Views over the 2 weeks ended on 20220522 (Thank you!) ### Features @@ -188,7 +187,7 @@ script on systems with secure mode on. It works very well on Ubuntu based distro distros, such as Raspberry Pi OS, do not support secure mode because the hardware they support does not support secure mode making it unnecessary. There are distros that do not work with the support currently in use. If you install this driver and, -after a reboot, the driver is not working, you can go into the BIOS and tempoarily turn +after a reboot, the driver is not working, you can go into the BIOS and temporarily turn secure mode off to see if secure mode is the problem. ### Installation Steps diff --git a/install-driver-no-dkms.sh b/install-driver-no-dkms.sh index fb3d116..da61cb7 100755 --- a/install-driver-no-dkms.sh +++ b/install-driver-no-dkms.sh @@ -37,15 +37,15 @@ then fi # information that helps with bug reports + # displays script name and version echo "Running ${SCRIPT_NAME} version ${SCRIPT_VERSION}" -# distro (need to work on this) -#hostnamectl | grep 'Operating System' | sed 's/ Operating System: //' + # kernel uname -r + # architecture - for ARM: aarch64 = 64 bit, armv7l = 32 bit uname -m -#getconf LONG_BIT (need to work on this) echo "Starting installation..." @@ -66,6 +66,7 @@ if [[ "$RESULT" != "0" ]] then echo "An error occurred. Error = ${RESULT}" echo "Please report this error." + echo "Please copy all screen output and paste it into the report." echo "You will need to run the following before reattempting installation." echo "$ sudo ./remove-driver-no-dkms.sh" exit $RESULT diff --git a/install-driver.sh b/install-driver.sh index 0170b0d..16abc50 100755 --- a/install-driver.sh +++ b/install-driver.sh @@ -54,15 +54,15 @@ then fi # information that helps with bug reports + # displays script name and version echo "Running ${SCRIPT_NAME} version ${SCRIPT_VERSION}" -# distro (need to work on this) -#hostnamectl | grep 'Operating System' | sed 's/ Operating System: //' + # kernel uname -r + # architecture - for ARM: aarch64 = 64 bit, armv7l = 32 bit uname -m -#getconf LONG_BIT (need to work on this) echo "Starting installation..." @@ -85,6 +85,7 @@ if [[ "$RESULT" != "0" ]] then echo "An error occurred. dkms add error = ${RESULT}" echo "Please report this error." + echo "Please copy all screen output and paste it into the report." echo "You will need to run the following before reattempting installation." echo "$ sudo ./remove-driver.sh" exit $RESULT @@ -97,6 +98,7 @@ if [[ "$RESULT" != "0" ]] then echo "An error occurred. dkms build error = ${RESULT}" echo "Please report this error." + echo "Please copy all screen output and paste it into the report." echo "You will need to run the following before reattempting installation." echo "$ sudo ./remove-driver.sh" exit $RESULT