diff options
author | Felix Fietkau <nbd@openwrt.org> | 2015-11-22 19:06:42 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2015-11-22 19:06:42 +0000 |
commit | 46bf1123e7eecaf30fb96608f56b1fee65f1c5f8 (patch) | |
tree | 9de9f9e367adcc2cc878fbc1257c0c92b2380d14 /package | |
parent | f5c790a4729f35709212e71fda7c5781549efb02 (diff) | |
download | master-187ad058-46bf1123e7eecaf30fb96608f56b1fee65f1c5f8.tar.gz master-187ad058-46bf1123e7eecaf30fb96608f56b1fee65f1c5f8.tar.bz2 master-187ad058-46bf1123e7eecaf30fb96608f56b1fee65f1c5f8.zip |
ath10k-firmware: add board-2.bin for qca99x0
Keep board.bin as fallback for devices without OTP that load caldata
from flash
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@47592 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r-- | package/firmware/ath10k-firmware/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/package/firmware/ath10k-firmware/Makefile b/package/firmware/ath10k-firmware/Makefile index 8b6ef86fb7..596cf1f808 100644 --- a/package/firmware/ath10k-firmware/Makefile +++ b/package/firmware/ath10k-firmware/Makefile @@ -47,6 +47,17 @@ $(Package/ath10k-firmware-default) TITLE:=ath10k firmware for QCA6174 devices endef +QCA99X0_BOARD_REV:=ddcec9efd245da9365c474f513a855a55f3ac7fe +QCA99X0_BOARD_FILE:=board-2.bin.$(QCA99X0_BOARD_REV) + +define Download/qca99x0-board + URL:=https://www.codeaurora.org/cgit/quic/qsdk/oss/firmware/ath10k-firmware/plain/ath10k/QCA99X0/hw2.0 + URL_FILE:=board-2.bin?id=ddcec9efd245da9365c474f513a855a55f3ac7fe + FILE:=$(QCA99X0_BOARD_FILE) + MD5SUM:=a2b3c653c2363a5641200051d6333d0a +endef +$(eval $(call Download,qca99x0-board)) + define Build/Compile endef @@ -69,6 +80,9 @@ endef define Package/ath10k-firmware-qca99x0/install $(INSTALL_DIR) $(1)/lib/firmware/ath10k/QCA99X0/hw2.0 $(INSTALL_DATA) \ + $(DL_DIR)/$(QCA99X0_BOARD_FILE) \ + $(1)/lib/firmware/ath10k/QCA99X0/hw2.0/board-2.bin + $(INSTALL_DATA) \ $(PKG_BUILD_DIR)/QCA99X0/hw2.0/boardData_AR900B_CUS239_5G_v2_001.bin \ $(1)/lib/firmware/ath10k/QCA99X0/hw2.0/board.bin $(INSTALL_DATA) \ |