From 0476bb22acd65ec038cd4a3a6c80103d90a4f14a Mon Sep 17 00:00:00 2001 From: morrownr Date: Wed, 28 Dec 2022 22:22:19 -0600 Subject: [PATCH] minor updates --- Makefile | 8 ++++---- README.md | 6 +++--- install-driver.sh | 4 ++-- remove-driver.sh | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Makefile b/Makefile index 3d30806..5ee709f 100644 --- a/Makefile +++ b/Makefile @@ -69,7 +69,7 @@ CONFIG_GSPI_HCI = n ######################### Features ############################ CONFIG_AP_MODE = y CONFIG_P2P = y -CONFIG_MP_INCLUDED = y +CONFIG_MP_INCLUDED = n CONFIG_POWER_SAVING = y CONFIG_IPS_MODE = default CONFIG_LPS_MODE = default @@ -82,7 +82,7 @@ CONFIG_EXT_CLK = n CONFIG_TRAFFIC_PROTECT = n CONFIG_LOAD_PHY_PARA_FROM_FILE = y CONFIG_TXPWR_BY_RATE = y -CONFIG_TXPWR_BY_RATE_EN = y +CONFIG_TXPWR_BY_RATE_EN = n CONFIG_TXPWR_LIMIT = y CONFIG_TXPWR_LIMIT_EN = n CONFIG_RTW_CHPLAN = 0xFF @@ -93,7 +93,7 @@ CONFIG_SIGNAL_SCALE_MAPPING = n CONFIG_80211W = y CONFIG_REDUCE_TX_CPU_LOADING = n CONFIG_BR_EXT = y -CONFIG_TDLS = n +CONFIG_TDLS = y CONFIG_WIFI_MONITOR = y CONFIG_MCC_MODE = n CONFIG_APPEND_VENDOR_IE_ENABLE = n @@ -1388,7 +1388,7 @@ EXTRA_CFLAGS += -DCONFIG_IOCTL_CFG80211 -DRTW_USE_CFG80211_STA_EVENT SUBARCH := $(shell uname -m | sed -e s/i.86/i386/) ARCH ?= $(SUBARCH) CROSS_COMPILE ?= -KVER := $(shell uname -r) +KVER := $(shell uname -r) KSRC := /lib/modules/$(KVER)/build MODDESTDIR := /lib/modules/$(KVER)/kernel/drivers/net/wireless/ INSTALL_PREFIX := diff --git a/README.md b/README.md index a00e419..a81e151 100644 --- a/README.md +++ b/README.md @@ -121,7 +121,7 @@ a modification or two to the Makefile). ### Compatible Devices -Warning: If you are looking for information about what adapter to buy, +Note: If you are looking for information about what adapter to buy, click [here](https://github.com/morrownr/USB-WiFi) and look for Main Menu item 2 which will show information about and links to recommended adapters. @@ -130,7 +130,7 @@ item 2 which will show information about and links to recommended adapters. * EDUP EP-AC1635 * TOTOLINK A650UA v3 * Mercusys MU6H (multi-state) -* Numerous additional products that are based on the supported chipsets +* Numerous adapters that are based on the supported chipset. ### Installation Information @@ -210,7 +210,7 @@ If it is not set, you will likely have problems accessing some channels, especia 5 Ghz and 6 GHz channels. To set your Country Code: ``` -iw reg set US +sudo iw reg set US ``` If you are not in the US, please use the country code for your country. See: diff --git a/install-driver.sh b/install-driver.sh index 3705a73..f4a3723 100755 --- a/install-driver.sh +++ b/install-driver.sh @@ -16,7 +16,7 @@ # GNU General Public License for more details. SCRIPT_NAME="install-driver.sh" -SCRIPT_VERSION="20221225" +SCRIPT_VERSION="20221228" MODULE_NAME="8821cu" DRV_VERSION="5.12.0.4" @@ -177,7 +177,7 @@ then make clean >/dev/null 2>&1 - make + make -j$(nproc) RESULT=$? if [[ "$RESULT" != "0" ]] diff --git a/remove-driver.sh b/remove-driver.sh index 4cac895..7042443 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="20221225" +SCRIPT_VERSION="20221228" MODULE_NAME="8821cu" DRV_VERSION="5.12.0.4"