mostly README updates

pull/19/head
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_MODE = normal
CONFIG_SIGNAL_SCALE_MAPPING = n
# necessary for WPA3 support
CONFIG_80211W = y
CONFIG_REDUCE_TX_CPU_LOADING = n
CONFIG_BR_EXT = y
@ -109,7 +110,7 @@ endif
CONFIG_RTW_DEBUG = y
# default log level is _DRV_INFO_ = 4,
# 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
CONFIG_PROC_DEBUG = y

View File

@ -4,6 +4,9 @@
- 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
- IEEE 802.11 b/g/n/ac WiFi compliant
@ -27,7 +30,6 @@
* AP (see FAQ)
* P2P-client
* P2P-GO
* Concurrent (see `Concurrent_Mode.md` in the `docs` folder.)
- Log level control
- LED control
- Power saving control
@ -38,9 +40,10 @@
### Compatible CPUs
- x86, amd64
- ARM, ARM64
- MIPS
- x86
- x86-64 (amd64)
- arm
- arm64 (aarch64)
### Compatible Kernels
@ -137,8 +140,8 @@ install the newest available before installing the new kernel. Use the
following commands in the driver directory:
```
$ sudo ./remove-driver.sh
$ git pull
$ sudo ./remove-driver.sh
$ sudo ./install-driver.sh
```

View File

@ -80,7 +80,7 @@ if ! command -v dkms >/dev/null 2>&1
then
echo "The non-dkms installation routines are in use."
make clean
make clean >/dev/null 2>&1
make
RESULT=$?
@ -91,7 +91,7 @@ then
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"
echo "$ sudo ./remove-driver.sh"
exit $RESULT
fi
@ -110,7 +110,7 @@ then
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"
echo "$ sudo ./remove-driver.sh"
exit $RESULT
fi
else