1
0
mirror of https://github.com/morrownr/8821cu-20210916.git synced 2024-09-10 00:56:35 +00:00

mostly README updates

This commit is contained in:
morrownr 2022-11-18 10:36:46 -06:00
parent 58ff674f97
commit cf37ca1066
3 changed files with 13 additions and 9 deletions

View File

@ -80,6 +80,7 @@ CONFIG_RTW_CHPLAN = 0xFF
CONFIG_RTW_ADAPTIVITY_EN = disable CONFIG_RTW_ADAPTIVITY_EN = disable
CONFIG_RTW_ADAPTIVITY_MODE = normal CONFIG_RTW_ADAPTIVITY_MODE = normal
CONFIG_SIGNAL_SCALE_MAPPING = n CONFIG_SIGNAL_SCALE_MAPPING = n
# necessary for WPA3 support
CONFIG_80211W = y CONFIG_80211W = y
CONFIG_REDUCE_TX_CPU_LOADING = n CONFIG_REDUCE_TX_CPU_LOADING = n
CONFIG_BR_EXT = y CONFIG_BR_EXT = y
@ -109,7 +110,7 @@ endif
CONFIG_RTW_DEBUG = y CONFIG_RTW_DEBUG = y
# default log level is _DRV_INFO_ = 4, # default log level is _DRV_INFO_ = 4,
# please refer to "How_to_set_driver_debug_log_level.doc" to set the available level. # please refer to "How_to_set_driver_debug_log_level.doc" to set the available level.
CONFIG_RTW_LOG_LEVEL = 4 CONFIG_RTW_LOG_LEVEL = 0
# enable /proc/net/rtlxxxx/ debug interfaces # enable /proc/net/rtlxxxx/ debug interfaces
CONFIG_PROC_DEBUG = y CONFIG_PROC_DEBUG = y

View File

@ -4,6 +4,9 @@
- v5.12.0.4 (Realtek) (20210916) plus updates from the Linux community - v5.12.0.4 (Realtek) (20210916) plus updates from the Linux community
Note: Please read "supported-device-IDs" for information about how to
confirm that this is the correct driver for your adapter.
### Features ### Features
- IEEE 802.11 b/g/n/ac WiFi compliant - IEEE 802.11 b/g/n/ac WiFi compliant
@ -27,7 +30,6 @@
* AP (see FAQ) * AP (see FAQ)
* P2P-client * P2P-client
* P2P-GO * P2P-GO
* Concurrent (see `Concurrent_Mode.md` in the `docs` folder.)
- Log level control - Log level control
- LED control - LED control
- Power saving control - Power saving control
@ -38,9 +40,10 @@
### Compatible CPUs ### Compatible CPUs
- x86, amd64 - x86
- ARM, ARM64 - x86-64 (amd64)
- MIPS - arm
- arm64 (aarch64)
### Compatible Kernels ### Compatible Kernels
@ -137,8 +140,8 @@ install the newest available before installing the new kernel. Use the
following commands in the driver directory: following commands in the driver directory:
``` ```
$ sudo ./remove-driver.sh
$ git pull $ git pull
$ sudo ./remove-driver.sh
$ sudo ./install-driver.sh $ sudo ./install-driver.sh
``` ```

View File

@ -80,7 +80,7 @@ if ! command -v dkms >/dev/null 2>&1
then then
echo "The non-dkms installation routines are in use." echo "The non-dkms installation routines are in use."
make clean make clean >/dev/null 2>&1
make make
RESULT=$? RESULT=$?
@ -91,7 +91,7 @@ then
echo "Please report this error." echo "Please report this error."
echo "Please copy all screen output and paste it into the report." echo "Please copy all screen output and paste it into the report."
echo "You will need to run the following before reattempting installation." echo "You will need to run the following before reattempting installation."
echo "$ sudo ./remove-driver-no-dkms.sh" echo "$ sudo ./remove-driver.sh"
exit $RESULT exit $RESULT
fi fi
@ -110,7 +110,7 @@ then
echo "Please report this error." echo "Please report this error."
echo "Please copy all screen output and paste it into the report." echo "Please copy all screen output and paste it into the report."
echo "You will need to run the following before reattempting installation." echo "You will need to run the following before reattempting installation."
echo "$ sudo ./remove-driver-no-dkms.sh" echo "$ sudo ./remove-driver.sh"
exit $RESULT exit $RESULT
fi fi
else else