Skip to content

Instantly share code, notes, and snippets.

@liziwl
Last active March 19, 2018 09:06
Show Gist options
  • Save liziwl/0b4bf38a609dd21cf4513eea21eede0f to your computer and use it in GitHub Desktop.
Save liziwl/0b4bf38a609dd21cf4513eea21eede0f to your computer and use it in GitHub Desktop.
修复 Qualcomm Atheros QCA6174 没有正确载入的问题

参考链接: https://bbs.archlinux.org/viewtopic.php?id=208874

目录不存在

If the firmware file directory doesn't exist, create it:

sudo mkdir -p /lib/firmware/ath10k/QCA6174/hw3.0/

目录存在,备份,删除原文件

If the directory already exists, backup everything important from it:

mkdir ~/ath10k_old
cp /lib/firmware/ath10k/QCA6174/hw3.0/* ~/ath10k_old

Then delete it's old contents:

sudo rm /lib/firmware/ath10k/QCA6174/hw3.0/*

Now we can start downloading the new board file and the firmware:

https://github.com/FireWalkerX/ath10k-firmware/blob/7e56cbb94182a2fdab110cf5bfeded8fd1d44d30/QCA6174/hw3.0/board-2.bin?raw=true

https://github.com/FireWalkerX/ath10k-firmware/blob/7e56cbb94182a2fdab110cf5bfeded8fd1d44d30/QCA6174/hw3.0/firmware-4.bin_WLAN.RM.2.0-00180-QCARMSWPZ-1?raw=true

下载上面2个文件复制进/lib/firmware/ath10k/QCA6174/hw3.0/

重命名为

/board.bin
/firmware-4.bin

Make the files executable:

sudo chmod +x /lib/firmware/ath10k/QCA6174/hw3.0/*

Reboot and your wireless should now be working!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment