disable-hwcrypto.sh 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. #!/bin/bash
  2. # Copyright (c) 2017, Mathy Vanhoef <Mathy.Vanhoef@cs.kuleuven.be>
  3. #
  4. # This code may be distributed under the terms of the BSD license.
  5. # See README for more details.
  6. set -e
  7. NOHWCRYPT="ath5k ath9k ath9k_htc rt2800usb carl9170 b43 p54common rt2500usb rt2800pci rt2800usb rt73usb"
  8. SWCRYPTO="iwlwifi iwl3945 iwl4965"
  9. HWCRYPTO="ipw2200"
  10. # 1. Create nohwcrypt.conf options file
  11. rm /etc/modprobe.d/nohwcrypt.conf 2> /dev/null || true
  12. for MODULE in $NOHWCRYPT
  13. do echo "options $MODULE nohwcrypt=1" >> /etc/modprobe.d/nohwcrypt.conf; done
  14. for MODULE in $SWCRYPTO
  15. do echo "options $MODULE swcrypto=1" >> /etc/modprobe.d/nohwcrypt.conf; done
  16. for MODULE in $HWCRYPTO
  17. do echo "options $MODULE hwcrypto=0" >> /etc/modprobe.d/nohwcrypt.conf; done
  18. # 2. Remove loaded modules so they'll reload parameters
  19. for MODULE in $NOHWCRYPT $SWCRYPTO $HWCRYPTO
  20. do rmmod $MODULE 2> /dev/null || true; done
  21. # 3. Done. To be sure parameters are reloaded, reboot computer.
  22. echo "Hardware decryption disabled. Reboot your computer."