Created
April 8, 2020 12:27
-
-
Save stamate/48bfb9317c08f832935b991d5a7d9f0d to your computer and use it in GitHub Desktop.
Update wifi drivers for ath10 QCA6174 on Archlinux for Dell XPS 13 9370
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/zsh | |
| FOLDER='/tmp/ath10k-firmware-master/QCA6174' | |
| wget --directory-prefix=/tmp --no-check-certificate --content-disposition https://codeload.github.com/kvalo/ath10k-firmware/zip/master | |
| unzip /tmp/ath10k-firmware-master.zip 'ath10k-firmware-master/QCA6174/*' -d /tmp | |
| mv $FOLDER//hw3.0/firmware-4.bin_* $FOLDER/hw3.0/firmware-4.bin | |
| sudo rm -rf /lib/firmware/ath10k/QCA6174 | |
| sudo mv $FOLDER /lib/firmware/ath10k/ | |
| echo "ALL DONE! Your Killer wifi firmware has been updated! Please restart to enjoy all the perks :)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment