123456789101112131415161718192021222324252627282930 |
- #!/bin/bash
- set -e
- NOHWCRYPT="ath5k ath9k ath9k_htc rt2800usb carl9170 b43 p54common rt2500usb rt2800pci rt2800usb rt73usb"
- SWCRYPTO="iwlwifi iwl3945 iwl4965"
- HWCRYPTO="ipw2200"
- rm -f /etc/modprobe.d/nohwcrypt.conf
- for MODULE in $NOHWCRYPT $SWCRYPTO $HWCRYPTO
- do
- rmmod $MODULE 2> /dev/null || true;
- done
- echo "Hardware decryption re-enabled. Reboot your computer."
|