Created
July 15, 2023 02:57
-
-
Save zerog2k/75e6e27aeef0494504ae9d56bf690097 to your computer and use it in GitHub Desktop.
Downloads QCA9377 sdio wifi & bluetooth uart firmware for Armbian. Run as root.
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/bash | |
echo "Downloading QCA9377 firmware..." | |
# qca9377-sdio-wifi firmware | |
mkdir -p /lib/firmware/ath10k/QCA9377/hw1.0/ | |
cd /lib/firmware/ath10k/QCA9377/hw1.0/ | |
wget https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/plain/ath10k/QCA9377/hw1.0/board.bin | |
wget https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/plain/ath10k/QCA9377/hw1.0/board-2.bin | |
wget https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/plain/ath10k/QCA9377/hw1.0/firmware-sdio-5.bin | |
ln -s firmware-sdio-5.bin firmware-5.bin | |
# qca9377-bt firmware | |
cd /lib/firmware/qca/ | |
wget https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/plain/qca/rampatch_00230302.bin | |
wget https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/plain/qca/nvm_00230302.bin | |
cd | |
echo "Reboot to take effect." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
sorry, maybe you have a different version of hardware, but QCA9377/LTM8830
The issue is that the correct fw for QCA9377 bt doesnt load unless
is actually
i.e. https://github.com/armbian/build/pull/6014/files#diff-8ef15df5363e890e27dba320d674e7fd463f635c99cd049db1e9a15fd55e9122R85