From 69c65d4d9dc70cae132689afc26f17ad401b5d0d Mon Sep 17 00:00:00 2001 From: morrownr Date: Sun, 5 Mar 2023 19:47:52 -0600 Subject: [PATCH] cleanup --- .gitignore | 7 +++++++ FAQ.md | 2 +- Makefile | 2 +- README.md | 4 ++-- edit-options.sh | 2 +- install-driver.sh | 8 ++------ 6 files changed, 14 insertions(+), 11 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a9ca360 --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +*.o +*.cmd +*.ko +*.mod +*.mod.c +Module.symvers +modules.order diff --git a/FAQ.md b/FAQ.md index de7837d..8867f22 100644 --- a/FAQ.md +++ b/FAQ.md @@ -41,7 +41,7 @@ Here is a link regarding Debian and Secure Boot: https://wiki.debian.org/SecureBoot -There is work underway to add Secure Boot suport for systems that do not +There is work underway to add Secure Boot support for systems that do not have `dkms` available or if a manual installation is desired. ----- diff --git a/Makefile b/Makefile index da8cc57..d255750 100644 --- a/Makefile +++ b/Makefile @@ -98,7 +98,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 diff --git a/README.md b/README.md index 9c4dcc0..8ee29da 100644 --- a/README.md +++ b/README.md @@ -85,7 +85,7 @@ be provided via PR or message in Issues. - [openSUSE](https://www.opensuse.org/) Tumbleweed (rolling) (kernel 5.15) -- [Raspberry Pi OS](https://www.raspberrypi.org) (2022-09-22) (ARM 32 bit and 64 bit) (kernel 5.15) +- [Raspberry Pi OS](https://www.raspberrypi.org) (2023-02-21) (ARM 32 bit and 64 bit) (kernel 5.15) - [Raspberry Pi Desktop](https://www.raspberrypi.org) (2022-07-01) (x86 32 bit) (kernel 5.10) @@ -243,7 +243,7 @@ sudo xbps-install -Syu ``` Note: It is recommended that you reboot your system at this point. The -rest of the installation will appreciate having a fully up to date +rest of the installation will appreciate having a fully up-to-date system to work with. The installation can then be continued with Step 3. ``` diff --git a/edit-options.sh b/edit-options.sh index 289c9e1..b1f601e 100755 --- a/edit-options.sh +++ b/edit-options.sh @@ -1,6 +1,6 @@ #!/bin/sh -# Purpose: Make it easier to edit the driver options file. +# Purpose: Make it easier to edit the correct driver options file. # # Flexible editor support. # diff --git a/install-driver.sh b/install-driver.sh index eb1e6b1..d42aac1 100755 --- a/install-driver.sh +++ b/install-driver.sh @@ -177,12 +177,6 @@ if command -v mokutil >/dev/null 2>&1; then fi fi -# check ISO 3166-1 alpha-2 Country Code is not 00 -#if iw reg get | grep -i 00 >/dev/null 2>&1; then -# echo ": The Country Code may not be properly set." -# echo ": File 'alpha-2_Country_Codes' is located in the docs directory." -# echo ": Please read and follow the directions in the file after installation." -#fi echo ": ---------------------------" echo @@ -289,6 +283,8 @@ if ! command -v dkms >/dev/null 2>&1; then if [ "$RESULT" = "0" ]; then make clean >/dev/null 2>&1 echo "The driver was installed successfully." + echo ": ---------------------------" + echo else echo "An error occurred: ${RESULT}" echo "Please report this error."