diff options
author | Ben Greear <greearb@candelatech.com> | 2016-07-21 16:52:42 -0700 |
---|---|---|
committer | Felix Fietkau <nbd@nbd.name> | 2016-07-23 12:28:48 +0200 |
commit | 164a405a481bc698645486a082c5a610be5ba48a (patch) | |
tree | 6e29f9a868e87211351fcf60a1e0ac971576a5fe /package | |
parent | 9971ab04572dd315b113c78c8086b0539ca30924 (diff) | |
download | upstream-164a405a481bc698645486a082c5a610be5ba48a.tar.gz upstream-164a405a481bc698645486a082c5a610be5ba48a.tar.bz2 upstream-164a405a481bc698645486a082c5a610be5ba48a.zip |
ath10k: Support installing CT firmware for QCA9984 NICs.
This firmware has been lightly tested on non LEDE system
to date, and will be undergoing further testing and development.
Allow users to easily install this on their LEDE system as
they prefer.
Signed-off-by: Ben Greear <greearb@candelatech.com>
Diffstat (limited to 'package')
-rw-r--r-- | package/firmware/ath10k-firmware/Makefile | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/package/firmware/ath10k-firmware/Makefile b/package/firmware/ath10k-firmware/Makefile index 4210772955..e2cf92eeba 100644 --- a/package/firmware/ath10k-firmware/Makefile +++ b/package/firmware/ath10k-firmware/Makefile @@ -40,6 +40,7 @@ endef QCA988X_FIRMWARE_FILE:=firmware-5.bin_10.2.4.97-1 QCA988X_FIRMWARE_FILE_CT:=firmware-2-ct-full-community-16.1.bin-lede QCA99X0_FIRMWARE_FILE_CT:=firmware-5-ct-full-community-7.bin-lede.001 +QCA9984_FIRMWARE_FILE_CT:=firmware-5-ct-full-community-7.bin-lede.001 define Download/ath10k-firmware-qca988x URL:=https://www.codeaurora.org/cgit/quic/qsdk/oss/firmware/ath10k-firmware/plain/10.2.4/ @@ -62,6 +63,13 @@ define Download/ath10k-firmware-qca99x0-ct endef $(eval $(call Download,ath10k-firmware-qca99x0-ct)) +define Download/ath10k-firmware-qca9984-ct + URL:=https://www.candelatech.com/downloads/ath10k-9984-10-4/ + FILE:=$(QCA9984_FIRMWARE_FILE_CT) + MD5SUM:=747cc1394f15aef97b5ea15e4c208e58 +endef +$(eval $(call Download,ath10k-firmware-qca9984-ct)) + define Package/ath10k-firmware-qca99x0 $(Package/ath10k-firmware-default) TITLE:=ath10k firmware for QCA99x0 devices @@ -89,6 +97,14 @@ This firmware conflicts with the standard 99x0 firmware, so select only one. endef +define Package/ath10k-firmware-qca9984-ct/description +Alternative ath10k firmware for QCA9984 from Candela Technologies. +Enables IBSS and other features. See: +http://www.candelatech.com/ath10k-10.4-9984.php +This firmware conflicts with the standard 9984 firmware, so select only +one. +endef + define Package/ath10k-firmware-qca99x0/description Standard ath10k firmware for QCA99x0 from QCA This firmware conflicts with the CT 99x0 firmware, so select only @@ -100,6 +116,11 @@ $(Package/ath10k-firmware-default) TITLE:=ath10k CT 10.4.3 firmware for QCA99x0 devices endef +define Package/ath10k-firmware-qca9984-ct +$(Package/ath10k-firmware-default) + TITLE:=ath10k CT 10.4.3 firmware for QCA9984 devices +endef + define Package/ath10k-firmware-qca9984 $(Package/ath10k-firmware-default) TITLE:=ath10k firmware for QCA9984 devices @@ -189,6 +210,19 @@ define Package/ath10k-firmware-qca9984/install $(1)/lib/firmware/ath10k/QCA9984/hw1.0/firmware-5.bin endef +define Package/ath10k-firmware-qca9984-ct/install + $(INSTALL_DIR) $(1)/lib/firmware/ath10k/QCA9984/hw1.0 + ln -s \ + ../../cal-pci-0000:01:00.0.bin \ + $(1)/lib/firmware/ath10k/QCA9984/hw1.0/board.bin + $(INSTALL_DATA) \ + $(PKG_BUILD_DIR)/QCA9984/hw1.0/board-2.bin \ + $(1)/lib/firmware/ath10k/QCA9984/hw1.0/board-2.bin + $(INSTALL_DATA) \ + $(DL_DIR)/$(QCA9984_FIRMWARE_FILE_CT) \ + $(1)/lib/firmware/ath10k/QCA9984/hw1.0/firmware-5.bin +endef + $(eval $(call BuildPackage,ath10k-firmware-qca988x)) $(eval $(call BuildPackage,ath10k-firmware-qca99x0)) $(eval $(call BuildPackage,ath10k-firmware-qca6174)) @@ -196,3 +230,4 @@ $(eval $(call BuildPackage,ath10k-firmware-qca9984)) $(eval $(call BuildPackage,ath10k-firmware-qca988x-ct)) $(eval $(call BuildPackage,ath10k-firmware-qca99x0-ct)) +$(eval $(call BuildPackage,ath10k-firmware-qca9984-ct)) |