summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Klug <john.klug@multitech.com>2022-12-14 15:01:08 -0600
committerJohn Klug <john.klug@multitech.com>2023-01-10 16:42:56 -0600
commitda74f397b802417e600888ed0b91ae0d4d983ef4 (patch)
treeb1f3f60a544a070b104e748e370cc874ac6beb76
parent4473682e813507b70f0a946728f2f92f5f4f7d46 (diff)
downloadmeta-multitech-atmel-da74f397b802417e600888ed0b91ae0d4d983ef4.tar.gz
meta-multitech-atmel-da74f397b802417e600888ed0b91ae0d4d983ef4.tar.bz2
meta-multitech-atmel-da74f397b802417e600888ed0b91ae0d4d983ef4.zip
Attempt to remove a few more modules related to the WiFi/BT
-rwxr-xr-xrecipes-kernel/rsi-91x/files/rs9113_remove_modules.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-kernel/rsi-91x/files/rs9113_remove_modules.sh b/recipes-kernel/rsi-91x/files/rs9113_remove_modules.sh
index f468545..acdb27b 100755
--- a/recipes-kernel/rsi-91x/files/rs9113_remove_modules.sh
+++ b/recipes-kernel/rsi-91x/files/rs9113_remove_modules.sh
@@ -7,7 +7,7 @@ sleep 2
modules=" "$(lsmod)" "
### COMMON HAL MODULES
-for mod in rsi_btsdio rsi_btusb rsi_bt91x rsi_sdio rsi_usb rsi_91x mac80211 cfg80211 bluetooth rfkill ; do
+for mod in bnep rfcomm rsi_btsdio rsi_btusb rsi_bt91x rsi_sdio rsi_usb rsi_91x mac80211 cfg80211 bluetooth rfkill ; do
if [[ ${modules} =~ [[:space:]]${mod}[[:space:]] ]] ; then
result+=$(rmmod $mod 2>&1)
last=$?