From 1b36a3e2147384391dc9ac3183a32497a6959eb2 Mon Sep 17 00:00:00 2001 From: morrownr Date: Sun, 1 Jan 2023 15:46:39 -0600 Subject: [PATCH] minor updates --- 8821cu.conf | 4 ++++ install-driver.sh | 4 ++-- remove-driver.sh | 4 ++-- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/8821cu.conf b/8821cu.conf index a920e65..c2658de 100644 --- a/8821cu.conf +++ b/8821cu.conf @@ -11,6 +11,10 @@ blacklist rtw88_8821cu # Edit the following line to change, add or delete options: options 8821cu rtw_drv_log_level=1 rtw_led_ctrl=1 rtw_vht_enable=1 rtw_power_mgnt=1 # +# Note: The above `options` line is a good default for managed mode. Below is +# an example for AP mode. Modify as required after reading the documentation: +#options 8821cu rtw_drv_log_level=1 rtw_led_ctrl=1 rtw_vht_enable=2 rtw_power_mgnt=1 rtw_beamform_cap=1 rtw_dfs_region_domain=1 +# # After editing is complete, save this file (if using nano: Ctrl + x, y, Enter) # and reboot to activate the changes. # diff --git a/install-driver.sh b/install-driver.sh index 29b3ba1..1e3dea6 100755 --- a/install-driver.sh +++ b/install-driver.sh @@ -164,11 +164,11 @@ fi echo "Kernel: ${KVER}" # display architecture -echo "Arch: ${KARCH}" +echo "Arch : ${KARCH}" # display gcc version gcc_ver=$(gcc --version | grep -i gcc) -echo "gcc: "${gcc_ver} +echo "gcc : "${gcc_ver} # display ISO 3166-1 alpha-2 Country Code #a2_country_code=$(iw reg get | grep -i country) diff --git a/remove-driver.sh b/remove-driver.sh index c9d8c21..a57280e 100755 --- a/remove-driver.sh +++ b/remove-driver.sh @@ -16,7 +16,7 @@ # GNU General Public License for more details. SCRIPT_NAME="remove-driver.sh" -SCRIPT_VERSION="20221228" +SCRIPT_VERSION="20230101" MODULE_NAME="8821cu" DRV_VERSION="5.12.0.4" @@ -94,7 +94,7 @@ fi echo "Kernel: ${KVER}" # display architecture -echo "Arch: ${KARCH}" +echo "Arch : ${KARCH}" # determine if dkms is installed and run the appropriate routines if command -v dkms >/dev/null 2>&1