Skip to content

Instantly share code, notes, and snippets.

@stamate
Created April 8, 2020 12:27
Show Gist options
  • Select an option

  • Save stamate/48bfb9317c08f832935b991d5a7d9f0d to your computer and use it in GitHub Desktop.

Select an option

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
#!/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