mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-19 13:48:06 +00:00
214c230a79
WCN6855 exists in 2 HW revisions, but both use the same FW so upstream
just has a symlink for hw2.1 to hw2.0 that I forgot to make.
Fixes: b4d3694f81
("linux-firmware: package ath11k consumer cards firmware")
Signed-off-by: Robert Marko <robimarko@gmail.com>
25 lines
1.1 KiB
Makefile
25 lines
1.1 KiB
Makefile
Package/ath11k-firmware-qca6390 = $(call Package/firmware-default,QCA6390 ath11k firmware)
|
|
define Package/ath11k-firmware-qca6390/install
|
|
$(INSTALL_DIR) $(1)/lib/firmware/ath11k/QCA6390/hw2.0
|
|
$(INSTALL_DATA) \
|
|
$(PKG_BUILD_DIR)/ath11k/QCA6390/hw2.0/* $(1)/lib/firmware/ath11k/QCA6390/hw2.0/
|
|
endef
|
|
$(eval $(call BuildPackage,ath11k-firmware-qca6390))
|
|
|
|
Package/ath11k-firmware-wcn6750 = $(call Package/firmware-default,WCN6750 ath11k firmware)
|
|
define Package/ath11k-firmware-wcn6750/install
|
|
$(INSTALL_DIR) $(1)/lib/firmware/ath11k/WCN6750/hw1.0
|
|
$(INSTALL_DATA) \
|
|
$(PKG_BUILD_DIR)/ath11k/WCN6750/hw1.0/* $(1)/lib/firmware/ath11k/WCN6750/hw1.0/
|
|
endef
|
|
$(eval $(call BuildPackage,ath11k-firmware-wcn6750))
|
|
|
|
Package/ath11k-firmware-wcn6855 = $(call Package/firmware-default,WCN6855 ath11k firmware)
|
|
define Package/ath11k-firmware-wcn6855/install
|
|
$(INSTALL_DIR) $(1)/lib/firmware/ath11k/WCN6855/hw2.0
|
|
$(INSTALL_DATA) \
|
|
$(PKG_BUILD_DIR)/ath11k/WCN6855/hw2.0/* $(1)/lib/firmware/ath11k/WCN6855/hw2.0/
|
|
$(LN) ./hw2.0 $(1)/lib/firmware/ath11k/WCN6855/hw2.1
|
|
endef
|
|
$(eval $(call BuildPackage,ath11k-firmware-wcn6855))
|