2015-10-30 22:01:18 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2015 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=ath10k-firmware
|
2018-02-17 10:26:23 +00:00
|
|
|
PKG_SOURCE_DATE:=2018-02-09
|
|
|
|
PKG_SOURCE_VERSION:=8f4bafdd400d21a65966004d0ce6e0686ef4d9bc
|
|
|
|
PKG_MIRROR_HASH:=4f4f0678b9d07c0282f18c69bd63a5e2a2ae015b9ce7298cedb88a60be87ed3a
|
2015-10-30 22:01:18 +00:00
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
|
|
PKG_SOURCE_URL:=https://github.com/kvalo/ath10k-firmware.git
|
|
|
|
|
2016-06-07 06:58:31 +00:00
|
|
|
PKG_MAINTAINER:=Felix Fietkau <nbd@nbd.name>
|
2015-10-30 22:01:18 +00:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
2015-11-10 12:03:39 +00:00
|
|
|
define Package/ath10k-firmware-default
|
2016-09-18 20:44:32 +00:00
|
|
|
SECTION:=firmware
|
|
|
|
CATEGORY:=Firmware
|
2015-10-30 22:01:18 +00:00
|
|
|
URL:=$(PKG_SOURCE_URL)
|
2016-07-13 15:16:26 +00:00
|
|
|
DEPENDS:=
|
2015-11-10 12:03:39 +00:00
|
|
|
endef
|
|
|
|
|
2016-08-22 10:03:36 +00:00
|
|
|
define Package/ath10k-firmware-qca9887
|
|
|
|
$(Package/ath10k-firmware-default)
|
|
|
|
TITLE:=ath10k firmware for QCA9887 devices
|
|
|
|
endef
|
|
|
|
|
2017-05-08 06:51:46 +00:00
|
|
|
define Package/ath10k-firmware-qca9888
|
|
|
|
$(Package/ath10k-firmware-default)
|
|
|
|
TITLE:=ath10k firmware for QCA9888 devices
|
|
|
|
endef
|
|
|
|
|
2017-01-27 00:11:27 +00:00
|
|
|
define Package/ath10k-firmware-qca9887-ct
|
|
|
|
$(Package/ath10k-firmware-default)
|
|
|
|
TITLE:=ath10k-CT firmware for QCA9887 devices
|
|
|
|
endef
|
|
|
|
|
2015-11-10 12:03:39 +00:00
|
|
|
define Package/ath10k-firmware-qca988x
|
|
|
|
$(Package/ath10k-firmware-default)
|
2015-10-30 22:01:18 +00:00
|
|
|
TITLE:=ath10k firmware for QCA988x devices
|
2016-09-18 20:44:32 +00:00
|
|
|
SECTION:=firmware
|
|
|
|
CATEGORY:=Firmware
|
2015-10-30 22:01:18 +00:00
|
|
|
endef
|
|
|
|
|
2016-12-16 13:36:53 +00:00
|
|
|
CT_FIRMWARE_FILE = $(1)-$($(1)_FIRMWARE_FILE_CT)
|
2018-01-20 00:27:04 +00:00
|
|
|
CT_FIRMWARE_FILE_HTT = $(1)-$($(1)_FIRMWARE_FILE_CT_HTT)
|
2016-12-16 13:36:53 +00:00
|
|
|
|
|
|
|
define Download/ct-firmware
|
|
|
|
URL:=https://www.candelatech.com/downloads/$(2)
|
|
|
|
FILE:=$(call CT_FIRMWARE_FILE,$(1))
|
|
|
|
URL_FILE:=$($(1)_FIRMWARE_FILE_CT)
|
|
|
|
endef
|
2015-12-23 14:45:22 +00:00
|
|
|
|
2018-01-20 00:27:04 +00:00
|
|
|
define Download/ct-firmware-htt
|
|
|
|
URL:=https://www.candelatech.com/downloads/$(2)
|
|
|
|
FILE:=$(call CT_FIRMWARE_FILE_HTT,$(1))
|
|
|
|
URL_FILE:=$($(1)_FIRMWARE_FILE_CT_HTT)
|
|
|
|
endef
|
|
|
|
|
2018-04-12 18:13:55 +00:00
|
|
|
QCA988X_FIRMWARE_FILE_CT:=firmware-2-ct-full-community-21.bin.lede.001
|
2016-05-29 18:14:59 +00:00
|
|
|
define Download/ath10k-firmware-qca988x-ct
|
2016-12-16 13:36:53 +00:00
|
|
|
$(call Download/ct-firmware,QCA988X,)
|
2018-04-12 18:13:55 +00:00
|
|
|
HASH:=a3d029c46a77be265e33bb57f827a59f01969f157825d66ecf42a9d327127578
|
2016-05-29 18:14:59 +00:00
|
|
|
endef
|
|
|
|
$(eval $(call Download,ath10k-firmware-qca988x-ct))
|
|
|
|
|
2018-04-12 18:13:55 +00:00
|
|
|
QCA988X_FIRMWARE_FILE_CT_HTT:=firmware-2-ct-full-htt-mgt-community-21.bin.lede.001
|
2018-03-21 17:29:03 +00:00
|
|
|
define Download/ath10k-firmware-qca988x-ct-htt
|
|
|
|
$(call Download/ct-firmware-htt,QCA988X,)
|
2018-04-12 18:13:55 +00:00
|
|
|
HASH:=8666523a6271c4aa6409880d2efd52643258c21464d6bf5948507bcb72d3e350
|
2018-03-21 17:29:03 +00:00
|
|
|
endef
|
|
|
|
$(eval $(call Download,ath10k-firmware-qca988x-ct-htt))
|
|
|
|
|
|
|
|
|
2018-04-12 18:13:55 +00:00
|
|
|
QCA9887_FIRMWARE_FILE_CT:=firmware-2-ct-full-community-21.bin.lede.001
|
2017-01-27 00:11:27 +00:00
|
|
|
define Download/ath10k-firmware-qca9887-ct
|
|
|
|
$(call Download/ct-firmware,QCA9887,ath10k-9887)
|
2018-04-12 18:13:55 +00:00
|
|
|
HASH:=ab8ef9afae5117f1cf71bbf80abde225f9f104620ba04a9734da51268e139803
|
2017-01-27 00:11:27 +00:00
|
|
|
endef
|
|
|
|
$(eval $(call Download,ath10k-firmware-qca9887-ct))
|
|
|
|
|
2018-04-12 18:13:55 +00:00
|
|
|
QCA9887_FIRMWARE_FILE_CT_HTT:=firmware-2-ct-full-htt-mgt-community-21.bin.lede.001
|
2018-03-21 17:29:03 +00:00
|
|
|
define Download/ath10k-firmware-qca9887-ct-htt
|
|
|
|
$(call Download/ct-firmware-htt,QCA9887,ath10k-9887)
|
2018-04-12 18:13:55 +00:00
|
|
|
HASH:=bb16a90ec8e7f80539ad016ebf5e3542bfc95a0e1a58c9f1b91e408a130ac058
|
2018-03-21 17:29:03 +00:00
|
|
|
endef
|
|
|
|
$(eval $(call Download,ath10k-firmware-qca9887-ct-htt))
|
|
|
|
|
|
|
|
|
2018-04-12 18:13:55 +00:00
|
|
|
QCA99X0_FIRMWARE_FILE_CT:=firmware-5-ct-full-community-11.bin-lede.001
|
2016-05-29 18:14:59 +00:00
|
|
|
define Download/ath10k-firmware-qca99x0-ct
|
2016-12-16 13:36:53 +00:00
|
|
|
$(call Download/ct-firmware,QCA99X0,ath10k-10-4)
|
2018-04-12 18:13:55 +00:00
|
|
|
HASH:=f5c1caaf5a7fb8a07d0e292bab853311a1e826b5de7e76a06e4d801e33827a49
|
2016-05-29 18:14:59 +00:00
|
|
|
endef
|
|
|
|
$(eval $(call Download,ath10k-firmware-qca99x0-ct))
|
|
|
|
|
2018-04-12 18:13:55 +00:00
|
|
|
QCA99X0_FIRMWARE_FILE_CT_HTT:=firmware-5-ct-full-htt-mgt-community-11.bin-lede.001
|
2018-03-21 17:29:03 +00:00
|
|
|
define Download/ath10k-firmware-qca99x0-ct-htt
|
|
|
|
$(call Download/ct-firmware-htt,QCA99X0,ath10k-10-4)
|
2018-04-12 18:13:55 +00:00
|
|
|
HASH:=a78a457a76f28e2ef34a7a3b1beef06064f7512680e14beafe02625d94d11619
|
2018-03-21 17:29:03 +00:00
|
|
|
endef
|
|
|
|
$(eval $(call Download,ath10k-firmware-qca99x0-ct-htt))
|
|
|
|
|
|
|
|
|
2018-04-12 18:13:55 +00:00
|
|
|
QCA9984_FIRMWARE_FILE_CT:=firmware-5-ct-full-community-11.bin-lede.001
|
2016-07-21 23:52:42 +00:00
|
|
|
define Download/ath10k-firmware-qca9984-ct
|
2016-12-16 13:36:53 +00:00
|
|
|
$(call Download/ct-firmware,QCA9984,ath10k-9984-10-4)
|
2018-04-12 18:13:55 +00:00
|
|
|
HASH:=204dde43a107911cd48ac04f6450365722fba6121487e49d4ef36b8aaa83339b
|
2016-07-21 23:52:42 +00:00
|
|
|
endef
|
|
|
|
$(eval $(call Download,ath10k-firmware-qca9984-ct))
|
|
|
|
|
2018-04-12 18:13:55 +00:00
|
|
|
QCA9984_FIRMWARE_FILE_CT_HTT:=firmware-5-ct-full-htt-mgt-community-11.bin-lede.001
|
2018-03-21 17:29:03 +00:00
|
|
|
define Download/ath10k-firmware-qca9984-ct-htt
|
|
|
|
$(call Download/ct-firmware-htt,QCA9984,ath10k-9984-10-4)
|
2018-04-12 18:13:55 +00:00
|
|
|
HASH:=e60b6033e96a9b14f43aae360e6a35e1217f3e94a4578821ccdb3e2da8521fae
|
2018-03-21 17:29:03 +00:00
|
|
|
endef
|
|
|
|
$(eval $(call Download,ath10k-firmware-qca9984-ct-htt))
|
|
|
|
|
|
|
|
|
2018-04-12 18:13:55 +00:00
|
|
|
QCA4019_FIRMWARE_FILE_CT:=firmware-5-ct-full-community-11.bin-lede.001
|
2018-01-20 00:27:04 +00:00
|
|
|
define Download/ath10k-firmware-qca4019-ct
|
|
|
|
$(call Download/ct-firmware,QCA4019,ath10k-4019-10-4)
|
2018-04-12 18:13:55 +00:00
|
|
|
HASH:=3daa439104806b1796c90e65bcafb18164358f0bd9e4d444302f7caf1c220dad
|
2018-01-20 00:27:04 +00:00
|
|
|
endef
|
|
|
|
$(eval $(call Download,ath10k-firmware-qca4019-ct))
|
|
|
|
|
2018-04-12 18:13:55 +00:00
|
|
|
QCA4019_FIRMWARE_FILE_CT_HTT:=firmware-5-ct-full-htt-mgt-community-11.bin-lede.001
|
2018-03-26 22:28:00 +00:00
|
|
|
define Download/ath10k-firmware-qca4019-ct-htt
|
|
|
|
$(call Download/ct-firmware-htt,QCA4019,ath10k-4019-10-4)
|
2018-04-12 18:13:55 +00:00
|
|
|
HASH:=eaf64c2942dac4d4718c5f7178be0676aee86b0293443d7b414e3f88290e2d15
|
2018-03-26 22:28:00 +00:00
|
|
|
endef
|
|
|
|
$(eval $(call Download,ath10k-firmware-qca4019-ct-htt))
|
|
|
|
|
2018-03-21 17:29:03 +00:00
|
|
|
|
2018-04-12 18:13:55 +00:00
|
|
|
QCA9888_FIRMWARE_FILE_CT:=firmware-5-ct-full-community-11.bin-lede.001
|
2017-05-16 22:44:20 +00:00
|
|
|
define Download/ath10k-firmware-qca9888-ct
|
|
|
|
$(call Download/ct-firmware,QCA9888,ath10k-9888-10-4)
|
2018-04-12 18:13:55 +00:00
|
|
|
HASH:=8d4415a77745259bbac4fc821c85f4001e58e49d9797a2e23585c44a03505678
|
2017-05-16 22:44:20 +00:00
|
|
|
endef
|
|
|
|
$(eval $(call Download,ath10k-firmware-qca9888-ct))
|
|
|
|
|
2018-04-12 18:13:55 +00:00
|
|
|
QCA9888_FIRMWARE_FILE_CT_HTT:=firmware-5-ct-full-htt-mgt-community-11.bin-lede.001
|
2018-03-21 17:29:03 +00:00
|
|
|
define Download/ath10k-firmware-qca9888-ct-htt
|
|
|
|
$(call Download/ct-firmware-htt,QCA9888,ath10k-9888-10-4)
|
2018-04-12 18:13:55 +00:00
|
|
|
HASH:=2a1bf2c7b4122469c40d70c48f155a53bd5d30a2900c01fe5ff896abc67acc9c
|
2018-03-21 17:29:03 +00:00
|
|
|
endef
|
|
|
|
$(eval $(call Download,ath10k-firmware-qca9888-ct-htt))
|
|
|
|
|
|
|
|
|
2015-10-30 22:01:22 +00:00
|
|
|
define Package/ath10k-firmware-qca99x0
|
2015-11-10 12:03:39 +00:00
|
|
|
$(Package/ath10k-firmware-default)
|
2015-10-30 22:01:22 +00:00
|
|
|
TITLE:=ath10k firmware for QCA99x0 devices
|
2016-09-18 20:44:32 +00:00
|
|
|
SECTION:=firmware
|
|
|
|
CATEGORY:=Firmware
|
2015-10-30 22:01:22 +00:00
|
|
|
endef
|
|
|
|
|
2016-05-29 18:14:59 +00:00
|
|
|
define Package/ath10k-firmware-qca988x-ct
|
|
|
|
$(Package/ath10k-firmware-default)
|
|
|
|
TITLE:=ath10k CT 10.1 firmware for QCA988x devices
|
2016-09-18 20:44:32 +00:00
|
|
|
SECTION:=firmware
|
|
|
|
CATEGORY:=Firmware
|
2018-03-21 17:29:00 +00:00
|
|
|
PROVIDES:=ath10k-firmware-qca988x
|
2016-05-29 18:14:59 +00:00
|
|
|
endef
|
2018-03-21 17:29:03 +00:00
|
|
|
define Package/ath10k-firmware-qca988x-ct-htt
|
|
|
|
$(Package/ath10k-firmware-default)
|
|
|
|
TITLE:=ath10k CT 10.1 htt-mgt fw for QCA988x
|
|
|
|
SECTION:=firmware
|
|
|
|
CATEGORY:=Firmware
|
|
|
|
PROVIDES:=ath10k-firmware-qca988x
|
|
|
|
DEPENDS:=+kmod-ath10k-ct
|
|
|
|
endef
|
2016-05-29 18:14:59 +00:00
|
|
|
|
2017-01-27 00:11:27 +00:00
|
|
|
define Package/ath10k-firmware-qca9887-ct
|
|
|
|
$(Package/ath10k-firmware-default)
|
|
|
|
TITLE:=ath10k CT 10.1 firmware for QCA9887 devices
|
|
|
|
SECTION:=firmware
|
|
|
|
CATEGORY:=Firmware
|
2018-03-21 17:29:00 +00:00
|
|
|
PROVIDES:=ath10k-firmware-qca9887
|
2017-01-27 00:11:27 +00:00
|
|
|
endef
|
2018-03-21 17:29:03 +00:00
|
|
|
define Package/ath10k-firmware-qca9887-ct-htt
|
|
|
|
$(Package/ath10k-firmware-default)
|
|
|
|
TITLE:=ath10k CT 10.1 htt-mgt fw for QCA9887
|
|
|
|
SECTION:=firmware
|
|
|
|
CATEGORY:=Firmware
|
|
|
|
PROVIDES:=ath10k-firmware-qca9887
|
|
|
|
DEPENDS:=+kmod-ath10k-ct
|
|
|
|
endef
|
2017-01-27 00:11:27 +00:00
|
|
|
|
2016-05-29 18:14:59 +00:00
|
|
|
define Package/ath10k-firmware-qca988x-ct/description
|
|
|
|
Alternative ath10k firmware for QCA988X from Candela Technologies.
|
|
|
|
Enables IBSS and other features. See:
|
|
|
|
http://www.candelatech.com/ath10k-10.1.php
|
|
|
|
This firmware will NOT be used unless the standard ath10k-firmware-qca988x
|
|
|
|
is un-selected since the driver will try to load firmware-5.bin before
|
|
|
|
firmware-2.bin
|
|
|
|
endef
|
2018-03-21 17:29:03 +00:00
|
|
|
define Package/ath10k-firmware-qca988x-ct-htt/description
|
|
|
|
Alternative ath10k firmware for QCA988X from Candela Technologies.
|
|
|
|
Uses normal HTT TX data path for management frames, which improves
|
|
|
|
stability in busy networks and fixes .11r authentication.
|
|
|
|
Enables IBSS and other features. See:
|
|
|
|
http://www.candelatech.com/ath10k-10.1.php
|
|
|
|
This firmware selects and requires the ath10k-ct driver.
|
|
|
|
endef
|
2016-05-29 18:14:59 +00:00
|
|
|
|
2017-01-27 00:11:27 +00:00
|
|
|
define Package/ath10k-firmware-qca9887-ct/description
|
|
|
|
Alternative ath10k firmware for QCA9887 from Candela Technologies.
|
|
|
|
Enables IBSS and other features. See:
|
|
|
|
http://www.candelatech.com/ath10k-10.1.php
|
|
|
|
This firmware conflicts with the standard 9887 firmware, so select only
|
|
|
|
one.
|
|
|
|
endef
|
2018-03-21 17:29:03 +00:00
|
|
|
define Package/ath10k-firmware-qca9887-ct-htt/description
|
|
|
|
Alternative ath10k firmware for QCA9887 from Candela Technologies.
|
|
|
|
Uses normal HTT TX data path for management frames, which improves
|
|
|
|
stability in busy networks and fixes .11r authentication.
|
|
|
|
Enables IBSS and other features. See:
|
|
|
|
http://www.candelatech.com/ath10k-10.1.php
|
|
|
|
This firmware selects and requires the ath10k-ct driver.
|
|
|
|
endef
|
2017-01-27 00:11:27 +00:00
|
|
|
|
2016-05-29 18:14:59 +00:00
|
|
|
define Package/ath10k-firmware-qca99x0-ct/description
|
|
|
|
Alternative ath10k firmware for QCA99x0 from Candela Technologies.
|
|
|
|
Enables IBSS and other features. See:
|
|
|
|
http://www.candelatech.com/ath10k-10.4.php
|
|
|
|
This firmware conflicts with the standard 99x0 firmware, so select only
|
|
|
|
one.
|
|
|
|
endef
|
2018-03-21 17:29:03 +00:00
|
|
|
define Package/ath10k-firmware-qca99x0-ct-htt/description
|
|
|
|
Alternative ath10k firmware for QCA99x0 from Candela Technologies.
|
|
|
|
Uses normal HTT TX data path for management frames, which improves
|
|
|
|
stability in busy networks and may be required for .11r authentication.
|
|
|
|
Enables IBSS and other features. See:
|
|
|
|
http://www.candelatech.com/ath10k-10.4.php
|
|
|
|
This firmware selects and requires the ath10k-ct driver.
|
|
|
|
endef
|
2016-05-29 18:14:59 +00:00
|
|
|
|
2016-07-21 23:52:42 +00:00
|
|
|
define Package/ath10k-firmware-qca9984-ct/description
|
|
|
|
Alternative ath10k firmware for QCA9984 from Candela Technologies.
|
|
|
|
Enables IBSS and other features. See:
|
2016-12-16 13:36:53 +00:00
|
|
|
http://www.candelatech.com/ath10k-10.4.php
|
2016-07-21 23:52:42 +00:00
|
|
|
This firmware conflicts with the standard 9984 firmware, so select only
|
|
|
|
one.
|
|
|
|
endef
|
2018-03-21 17:29:03 +00:00
|
|
|
define Package/ath10k-firmware-qca9984-ct-htt/description
|
|
|
|
Alternative ath10k firmware for QCA9984 from Candela Technologies.
|
|
|
|
Uses normal HTT TX data path for management frames, which improves
|
|
|
|
stability in busy networks and may be required for .11r authentication.
|
|
|
|
Enables IBSS and other features. See:
|
|
|
|
http://www.candelatech.com/ath10k-10.4.php
|
|
|
|
This firmware selects and requires the ath10k-ct driver.
|
2018-01-20 00:27:04 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/ath10k-firmware-qca4019-ct/description
|
|
|
|
Alternative ath10k firmware for IPQ4019 radio from Candela Technologies.
|
|
|
|
Enables IBSS and other features. Works with standard or ath10k-ct driver.
|
|
|
|
See: http://www.candelatech.com/ath10k-10.4.php
|
|
|
|
endef
|
2018-03-21 17:29:03 +00:00
|
|
|
define Package/ath10k-firmware-qca4019-ct-htt/description
|
|
|
|
Alternative ath10k firmware for IPQ4019 radio from Candela Technologies.
|
|
|
|
Uses normal HTT TX data path for management frames, which improves
|
|
|
|
stability in busy networks and may be required for .11r authentication.
|
|
|
|
Enables IBSS and other features.
|
|
|
|
See: http://www.candelatech.com/ath10k-10.4.php
|
|
|
|
This firmware selects and requires the ath10k-ct driver.
|
|
|
|
endef
|
2018-01-20 00:27:04 +00:00
|
|
|
|
2017-05-16 22:44:20 +00:00
|
|
|
define Package/ath10k-firmware-qca9888-ct/description
|
|
|
|
Alternative ath10k firmware for QCA9886 and QCA9888 from Candela Technologies.
|
|
|
|
Enables IBSS and other features. See:
|
|
|
|
http://www.candelatech.com/ath10k-10.4.php
|
|
|
|
This firmware conflicts with the standard 9886 and 9888 firmware, so select only
|
|
|
|
one.
|
|
|
|
endef
|
2018-03-21 17:29:03 +00:00
|
|
|
define Package/ath10k-firmware-qca9888-ct-htt/description
|
|
|
|
Alternative ath10k firmware for QCA9886 and QCA9888 from Candela Technologies.
|
|
|
|
Uses normal HTT TX data path for management frames, which improves
|
|
|
|
stability in busy networks and may be required for .11r authentication.
|
|
|
|
Enables IBSS and other features. See:
|
|
|
|
http://www.candelatech.com/ath10k-10.4.php
|
|
|
|
This firmware selects and requires the ath10k-ct driver.
|
|
|
|
endef
|
|
|
|
|
2017-05-16 22:44:20 +00:00
|
|
|
|
2016-05-29 18:14:59 +00:00
|
|
|
define Package/ath10k-firmware-qca99x0/description
|
|
|
|
Standard ath10k firmware for QCA99x0 from QCA
|
|
|
|
This firmware conflicts with the CT 99x0 firmware, so select only
|
|
|
|
one.
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/ath10k-firmware-qca99x0-ct
|
|
|
|
$(Package/ath10k-firmware-default)
|
2018-01-20 00:27:04 +00:00
|
|
|
TITLE:=ath10k CT 10.4 firmware for QCA99x0 devices
|
2016-09-18 20:44:32 +00:00
|
|
|
SECTION:=firmware
|
|
|
|
CATEGORY:=Firmware
|
2018-03-21 17:29:00 +00:00
|
|
|
PROVIDES:=ath10k-firmware-qca99x0
|
2016-05-29 18:14:59 +00:00
|
|
|
endef
|
2018-03-21 17:29:03 +00:00
|
|
|
define Package/ath10k-firmware-qca99x0-ct-htt
|
|
|
|
$(Package/ath10k-firmware-default)
|
|
|
|
TITLE:=ath10k CT 10.4 htt-mgt fw for QCA99x0
|
|
|
|
SECTION:=firmware
|
|
|
|
CATEGORY:=Firmware
|
|
|
|
PROVIDES:=ath10k-firmware-qca99x0
|
|
|
|
DEPENDS:=+kmod-ath10k-ct
|
|
|
|
endef
|
2016-05-29 18:14:59 +00:00
|
|
|
|
2016-07-21 23:52:42 +00:00
|
|
|
define Package/ath10k-firmware-qca9984-ct
|
|
|
|
$(Package/ath10k-firmware-default)
|
2018-01-20 00:27:04 +00:00
|
|
|
TITLE:=ath10k CT 10.4 firmware for QCA9984 devices
|
|
|
|
SECTION:=firmware
|
|
|
|
CATEGORY:=Firmware
|
2018-03-21 17:29:00 +00:00
|
|
|
PROVIDES:=ath10k-firmware-qca9984
|
2018-01-20 00:27:04 +00:00
|
|
|
endef
|
2018-03-21 17:29:03 +00:00
|
|
|
define Package/ath10k-firmware-qca9984-ct-htt
|
2018-01-20 00:27:04 +00:00
|
|
|
$(Package/ath10k-firmware-default)
|
2018-03-21 17:29:03 +00:00
|
|
|
TITLE:=ath10k CT 10.4 htt-mgt fw for QCA9984
|
2018-01-20 00:27:04 +00:00
|
|
|
SECTION:=firmware
|
|
|
|
CATEGORY:=Firmware
|
2018-03-21 17:29:03 +00:00
|
|
|
PROVIDES:=ath10k-firmware-qca9984
|
2018-03-21 17:29:00 +00:00
|
|
|
DEPENDS:=+kmod-ath10k-ct
|
2018-01-20 00:27:04 +00:00
|
|
|
endef
|
2018-03-21 17:29:03 +00:00
|
|
|
|
2018-01-20 00:27:04 +00:00
|
|
|
define Package/ath10k-firmware-qca4019-ct
|
|
|
|
$(Package/ath10k-firmware-default)
|
|
|
|
TITLE:=ath10k CT 10.4 firmware for QCA4018/9
|
2016-09-18 20:44:32 +00:00
|
|
|
SECTION:=firmware
|
|
|
|
CATEGORY:=Firmware
|
2018-03-21 17:29:00 +00:00
|
|
|
PROVIDES:=ath10k-firmware-qca4019
|
2016-07-21 23:52:42 +00:00
|
|
|
endef
|
2018-03-21 17:29:03 +00:00
|
|
|
define Package/ath10k-firmware-qca4019-ct-htt
|
|
|
|
$(Package/ath10k-firmware-default)
|
|
|
|
TITLE:=ath10k CT 10.4 htt-mgt for QCA4018/9
|
|
|
|
SECTION:=firmware
|
|
|
|
CATEGORY:=Firmware
|
|
|
|
PROVIDES:=ath10k-firmware-qca4019
|
|
|
|
DEPENDS:=+kmod-ath10k-ct
|
|
|
|
endef
|
2016-07-21 23:52:42 +00:00
|
|
|
|
2017-05-16 22:44:20 +00:00
|
|
|
define Package/ath10k-firmware-qca9888-ct
|
|
|
|
$(Package/ath10k-firmware-default)
|
2018-01-20 00:27:04 +00:00
|
|
|
TITLE:=ath10k CT 10.4 fw for QCA9886/8 devices
|
2017-05-16 22:44:20 +00:00
|
|
|
SECTION:=firmware
|
|
|
|
CATEGORY:=Firmware
|
2018-03-21 17:29:00 +00:00
|
|
|
PROVIDES:=ath10k-firmware-qca9888
|
2017-05-16 22:44:20 +00:00
|
|
|
endef
|
2018-03-21 17:29:03 +00:00
|
|
|
define Package/ath10k-firmware-qca9888-ct-htt
|
|
|
|
$(Package/ath10k-firmware-default)
|
|
|
|
TITLE:=ath10k CT 10.4 htt-mgt fw for QCA9886/8
|
|
|
|
SECTION:=firmware
|
|
|
|
CATEGORY:=Firmware
|
|
|
|
PROVIDES:=ath10k-firmware-qca9888
|
|
|
|
DEPENDS:=+kmod-ath10k-ct
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
2017-05-16 22:44:20 +00:00
|
|
|
|
2016-06-09 16:18:14 +00:00
|
|
|
define Package/ath10k-firmware-qca9984
|
|
|
|
$(Package/ath10k-firmware-default)
|
|
|
|
TITLE:=ath10k firmware for QCA9984 devices
|
2016-09-18 20:44:32 +00:00
|
|
|
SECTION:=firmware
|
|
|
|
CATEGORY:=Firmware
|
2016-06-09 16:18:14 +00:00
|
|
|
endef
|
|
|
|
|
2016-11-09 16:05:42 +00:00
|
|
|
define Package/ath10k-firmware-qca4019
|
|
|
|
$(Package/ath10k-firmware-default)
|
|
|
|
TITLE:=ath10k firmware for IPQ/QCA4019 devices
|
|
|
|
SECTION:=firmware
|
|
|
|
CATEGORY:=Firmware
|
|
|
|
endef
|
|
|
|
|
2015-11-10 12:03:39 +00:00
|
|
|
define Package/ath10k-firmware-qca6174
|
|
|
|
$(Package/ath10k-firmware-default)
|
|
|
|
TITLE:=ath10k firmware for QCA6174 devices
|
2016-09-18 20:44:32 +00:00
|
|
|
SECTION:=firmware
|
|
|
|
CATEGORY:=Firmware
|
2015-11-10 12:03:39 +00:00
|
|
|
endef
|
|
|
|
|
2015-11-22 19:06:42 +00:00
|
|
|
QCA99X0_BOARD_REV:=ddcec9efd245da9365c474f513a855a55f3ac7fe
|
|
|
|
QCA99X0_BOARD_FILE:=board-2.bin.$(QCA99X0_BOARD_REV)
|
|
|
|
|
|
|
|
define Download/qca99x0-board
|
2016-06-21 09:37:49 +00:00
|
|
|
URL:=https://source.codeaurora.org/quic/qsdk/oss/firmware/ath10k-firmware/plain/ath10k/QCA99X0/hw2.0
|
|
|
|
URL_FILE:=board-2.bin?id=$(QCA99X0_BOARD_REV)
|
2015-11-22 19:06:42 +00:00
|
|
|
FILE:=$(QCA99X0_BOARD_FILE)
|
2016-12-16 16:32:10 +00:00
|
|
|
HASH:=03711ac21e60ef59d3815e235eb721c0c22851b5410299411085aa6f2af45401
|
2015-11-22 19:06:42 +00:00
|
|
|
endef
|
|
|
|
$(eval $(call Download,qca99x0-board))
|
|
|
|
|
2015-10-30 22:01:18 +00:00
|
|
|
define Build/Compile
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
2016-11-09 16:05:42 +00:00
|
|
|
define Package/ath10k-firmware-qca4019/install
|
|
|
|
$(INSTALL_DIR) $(1)/lib/firmware/ath10k/QCA4019/hw1.0
|
|
|
|
$(INSTALL_DATA) \
|
|
|
|
$(PKG_BUILD_DIR)/QCA4019/hw1.0/board-2.bin \
|
|
|
|
$(1)/lib/firmware/ath10k/QCA4019/hw1.0/
|
|
|
|
$(INSTALL_DATA) \
|
2017-12-21 18:13:00 +00:00
|
|
|
$(PKG_BUILD_DIR)/QCA4019/hw1.0/3.4/firmware-5.bin_10.4-3.4-00104 \
|
2016-11-09 16:05:42 +00:00
|
|
|
$(1)/lib/firmware/ath10k/QCA4019/hw1.0/firmware-5.bin
|
|
|
|
endef
|
|
|
|
|
2016-08-22 10:03:36 +00:00
|
|
|
define Package/ath10k-firmware-qca9887/install
|
|
|
|
$(INSTALL_DIR) $(1)/lib/firmware/ath10k/QCA9887/hw1.0
|
|
|
|
$(INSTALL_DATA) \
|
2017-12-21 18:13:03 +00:00
|
|
|
$(PKG_BUILD_DIR)/QCA9887/hw1.0/10.2.4-1.0/firmware-5.bin_10.2.4-1.0-00033 \
|
2016-08-22 10:03:36 +00:00
|
|
|
$(1)/lib/firmware/ath10k/QCA9887/hw1.0/firmware-5.bin
|
|
|
|
$(INSTALL_DATA) \
|
2017-09-17 19:33:20 +00:00
|
|
|
$(PKG_BUILD_DIR)/QCA9887/hw1.0/board.bin \
|
2016-08-22 10:03:36 +00:00
|
|
|
$(1)/lib/firmware/ath10k/QCA9887/hw1.0/board.bin
|
|
|
|
endef
|
|
|
|
|
2017-05-08 06:51:46 +00:00
|
|
|
define Package/ath10k-firmware-qca9888/install
|
|
|
|
$(INSTALL_DIR) $(1)/lib/firmware/ath10k/QCA9888/hw2.0
|
|
|
|
$(INSTALL_DATA) \
|
|
|
|
$(PKG_BUILD_DIR)/QCA9888/hw2.0/board-2.bin \
|
|
|
|
$(1)/lib/firmware/ath10k/QCA9888/hw2.0/board-2.bin
|
|
|
|
$(INSTALL_DATA) \
|
2018-02-17 10:26:23 +00:00
|
|
|
$(PKG_BUILD_DIR)/QCA9888/hw2.0/3.5.3/firmware-5.bin_10.4-3.5.3-00053 \
|
2017-05-08 06:51:46 +00:00
|
|
|
$(1)/lib/firmware/ath10k/QCA9888/hw2.0/firmware-5.bin
|
|
|
|
endef
|
|
|
|
|
2015-10-30 22:01:18 +00:00
|
|
|
define Package/ath10k-firmware-qca988x/install
|
|
|
|
$(INSTALL_DIR) $(1)/lib/firmware/ath10k/QCA988X/hw2.0
|
|
|
|
$(INSTALL_DATA) \
|
2016-09-18 21:29:34 +00:00
|
|
|
$(PKG_BUILD_DIR)/QCA988X/hw2.0/board.bin \
|
2015-10-30 22:01:18 +00:00
|
|
|
$(1)/lib/firmware/ath10k/QCA988X/hw2.0/
|
|
|
|
$(INSTALL_DATA) \
|
2017-12-21 18:13:04 +00:00
|
|
|
$(PKG_BUILD_DIR)/QCA988X/hw2.0/10.2.4-1.0/firmware-5.bin_10.2.4-1.0-00033 \
|
2015-10-30 22:01:18 +00:00
|
|
|
$(1)/lib/firmware/ath10k/QCA988X/hw2.0/firmware-5.bin
|
|
|
|
endef
|
|
|
|
|
2018-03-21 17:29:03 +00:00
|
|
|
define Package/ath10k-firmware-qca6174/install
|
|
|
|
$(INSTALL_DIR) $(1)/lib/firmware/ath10k
|
|
|
|
$(CP) $(PKG_BUILD_DIR)/QCA6174 $(1)/lib/firmware/ath10k/
|
|
|
|
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) \
|
|
|
|
$(PKG_BUILD_DIR)/QCA99X0/hw2.0/firmware-5.bin_10.4.1.00030-1 \
|
|
|
|
$(1)/lib/firmware/ath10k/QCA99X0/hw2.0/firmware-5.bin
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/ath10k-firmware-qca9984/install
|
|
|
|
$(INSTALL_DIR) $(1)/lib/firmware/ath10k/QCA9984/hw1.0
|
|
|
|
$(INSTALL_DATA) \
|
|
|
|
$(PKG_BUILD_DIR)/QCA9984/hw1.0/board-2.bin \
|
|
|
|
$(1)/lib/firmware/ath10k/QCA9984/hw1.0/board-2.bin
|
|
|
|
$(INSTALL_DATA) \
|
|
|
|
$(PKG_BUILD_DIR)/QCA9984/hw1.0/3.5.3/firmware-5.bin_10.4-3.5.3-00053 \
|
|
|
|
$(1)/lib/firmware/ath10k/QCA9984/hw1.0/firmware-5.bin
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
|
|
|
# CT related firmware
|
|
|
|
|
2017-01-27 00:11:27 +00:00
|
|
|
define Package/ath10k-firmware-qca9887-ct/install
|
|
|
|
$(INSTALL_DIR) $(1)/lib/firmware/ath10k/QCA9887/hw1.0
|
|
|
|
$(INSTALL_DATA) \
|
|
|
|
$(DL_DIR)/$(call CT_FIRMWARE_FILE,QCA9887) \
|
|
|
|
$(1)/lib/firmware/ath10k/QCA9887/hw1.0/firmware-2.bin
|
|
|
|
$(INSTALL_DATA) \
|
2017-09-17 19:33:20 +00:00
|
|
|
$(PKG_BUILD_DIR)/QCA9887/hw1.0/board.bin \
|
2017-01-27 00:11:27 +00:00
|
|
|
$(1)/lib/firmware/ath10k/QCA9887/hw1.0/board.bin
|
|
|
|
endef
|
2018-03-21 17:29:03 +00:00
|
|
|
define Package/ath10k-firmware-qca9887-ct-htt/install
|
|
|
|
$(INSTALL_DIR) $(1)/lib/firmware/ath10k/QCA9887/hw1.0
|
|
|
|
$(INSTALL_DATA) \
|
|
|
|
$(DL_DIR)/$(call CT_FIRMWARE_FILE_HTT,QCA9887) \
|
|
|
|
$(1)/lib/firmware/ath10k/QCA9887/hw1.0/ct-firmware-2.bin
|
|
|
|
$(INSTALL_DATA) \
|
|
|
|
$(PKG_BUILD_DIR)/QCA9887/hw1.0/board.bin \
|
|
|
|
$(1)/lib/firmware/ath10k/QCA9887/hw1.0/board.bin
|
|
|
|
endef
|
2017-01-27 00:11:27 +00:00
|
|
|
|
2016-05-29 18:14:59 +00:00
|
|
|
define Package/ath10k-firmware-qca988x-ct/install
|
|
|
|
$(INSTALL_DIR) $(1)/lib/firmware/ath10k/QCA988X/hw2.0
|
|
|
|
$(INSTALL_DATA) \
|
2016-09-18 21:29:34 +00:00
|
|
|
$(PKG_BUILD_DIR)/QCA988X/hw2.0/board.bin \
|
2016-05-29 18:14:59 +00:00
|
|
|
$(1)/lib/firmware/ath10k/QCA988X/hw2.0/
|
|
|
|
$(INSTALL_DATA) \
|
2016-12-16 13:36:53 +00:00
|
|
|
$(DL_DIR)/$(call CT_FIRMWARE_FILE,QCA988X) \
|
2016-05-29 18:14:59 +00:00
|
|
|
$(1)/lib/firmware/ath10k/QCA988X/hw2.0/firmware-2.bin
|
|
|
|
endef
|
2018-03-21 17:29:03 +00:00
|
|
|
define Package/ath10k-firmware-qca988x-ct-htt/install
|
|
|
|
$(INSTALL_DIR) $(1)/lib/firmware/ath10k/QCA988X/hw2.0
|
|
|
|
$(INSTALL_DATA) \
|
|
|
|
$(PKG_BUILD_DIR)/QCA988X/hw2.0/board.bin \
|
|
|
|
$(1)/lib/firmware/ath10k/QCA988X/hw2.0/
|
|
|
|
$(INSTALL_DATA) \
|
|
|
|
$(DL_DIR)/$(call CT_FIRMWARE_FILE_HTT,QCA988X) \
|
|
|
|
$(1)/lib/firmware/ath10k/QCA988X/hw2.0/ct-firmware-2.bin
|
2015-11-10 12:03:39 +00:00
|
|
|
endef
|
|
|
|
|
2018-03-21 17:29:03 +00:00
|
|
|
define Package/ath10k-firmware-qca99x0-ct/install
|
2015-10-30 22:01:22 +00:00
|
|
|
$(INSTALL_DIR) $(1)/lib/firmware/ath10k/QCA99X0/hw2.0
|
2015-11-22 19:06:42 +00:00
|
|
|
$(INSTALL_DATA) \
|
|
|
|
$(DL_DIR)/$(QCA99X0_BOARD_FILE) \
|
|
|
|
$(1)/lib/firmware/ath10k/QCA99X0/hw2.0/board-2.bin
|
2015-10-30 22:01:22 +00:00
|
|
|
$(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) \
|
2018-03-21 17:29:03 +00:00
|
|
|
$(DL_DIR)/$(call CT_FIRMWARE_FILE,QCA99X0) \
|
2015-10-30 22:01:22 +00:00
|
|
|
$(1)/lib/firmware/ath10k/QCA99X0/hw2.0/firmware-5.bin
|
|
|
|
endef
|
2018-03-21 17:29:03 +00:00
|
|
|
define Package/ath10k-firmware-qca99x0-ct-htt/install
|
2016-05-29 18:14:59 +00:00
|
|
|
$(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) \
|
2018-03-21 17:29:03 +00:00
|
|
|
$(DL_DIR)/$(call CT_FIRMWARE_FILE_HTT,QCA99X0) \
|
|
|
|
$(1)/lib/firmware/ath10k/QCA99X0/hw2.0/ct-firmware-5.bin
|
2016-05-29 18:14:59 +00:00
|
|
|
endef
|
|
|
|
|
2018-03-21 17:29:03 +00:00
|
|
|
define Package/ath10k-firmware-qca9984-ct/install
|
2016-06-09 16:18:14 +00:00
|
|
|
$(INSTALL_DIR) $(1)/lib/firmware/ath10k/QCA9984/hw1.0
|
|
|
|
$(INSTALL_DATA) \
|
2017-03-29 14:41:31 +00:00
|
|
|
$(PKG_BUILD_DIR)/QCA9984/hw1.0/board-2.bin \
|
2016-06-09 16:18:14 +00:00
|
|
|
$(1)/lib/firmware/ath10k/QCA9984/hw1.0/board-2.bin
|
|
|
|
$(INSTALL_DATA) \
|
2018-03-21 17:29:03 +00:00
|
|
|
$(DL_DIR)/$(call CT_FIRMWARE_FILE,QCA9984) \
|
2016-06-09 16:18:14 +00:00
|
|
|
$(1)/lib/firmware/ath10k/QCA9984/hw1.0/firmware-5.bin
|
|
|
|
endef
|
2018-03-21 17:29:03 +00:00
|
|
|
define Package/ath10k-firmware-qca9984-ct-htt/install
|
2016-07-21 23:52:42 +00:00
|
|
|
$(INSTALL_DIR) $(1)/lib/firmware/ath10k/QCA9984/hw1.0
|
|
|
|
$(INSTALL_DATA) \
|
|
|
|
$(PKG_BUILD_DIR)/QCA9984/hw1.0/board-2.bin \
|
|
|
|
$(1)/lib/firmware/ath10k/QCA9984/hw1.0/board-2.bin
|
|
|
|
$(INSTALL_DATA) \
|
2018-03-21 17:29:03 +00:00
|
|
|
$(DL_DIR)/$(call CT_FIRMWARE_FILE_HTT,QCA9984) \
|
|
|
|
$(1)/lib/firmware/ath10k/QCA9984/hw1.0/ct-firmware-5.bin
|
2016-07-21 23:52:42 +00:00
|
|
|
endef
|
|
|
|
|
2018-03-21 17:29:03 +00:00
|
|
|
define Package/ath10k-firmware-qca4019-ct/install
|
2018-01-20 00:27:04 +00:00
|
|
|
$(INSTALL_DIR) $(1)/lib/firmware/ath10k/QCA4019/hw1.0
|
|
|
|
$(INSTALL_DATA) \
|
|
|
|
$(PKG_BUILD_DIR)/QCA4019/hw1.0/board-2.bin \
|
|
|
|
$(1)/lib/firmware/ath10k/QCA4019/hw1.0/
|
|
|
|
$(INSTALL_DATA) \
|
2018-03-21 17:29:03 +00:00
|
|
|
$(DL_DIR)/$(call CT_FIRMWARE_FILE,QCA4019) \
|
|
|
|
$(1)/lib/firmware/ath10k/QCA4019/hw1.0/firmware-5.bin
|
2018-01-20 00:27:04 +00:00
|
|
|
endef
|
2018-03-21 17:29:03 +00:00
|
|
|
define Package/ath10k-firmware-qca4019-ct-htt/install
|
2018-01-20 00:27:04 +00:00
|
|
|
$(INSTALL_DIR) $(1)/lib/firmware/ath10k/QCA4019/hw1.0
|
|
|
|
$(INSTALL_DATA) \
|
|
|
|
$(PKG_BUILD_DIR)/QCA4019/hw1.0/board-2.bin \
|
|
|
|
$(1)/lib/firmware/ath10k/QCA4019/hw1.0/
|
|
|
|
$(INSTALL_DATA) \
|
2018-03-21 17:29:03 +00:00
|
|
|
$(DL_DIR)/$(call CT_FIRMWARE_FILE_HTT,QCA4019) \
|
|
|
|
$(1)/lib/firmware/ath10k/QCA4019/hw1.0/ct-firmware-5.bin
|
2018-01-20 00:27:04 +00:00
|
|
|
endef
|
|
|
|
|
2017-05-16 22:44:20 +00:00
|
|
|
define Package/ath10k-firmware-qca9888-ct/install
|
|
|
|
$(INSTALL_DIR) $(1)/lib/firmware/ath10k/QCA9888/hw2.0
|
|
|
|
ln -s \
|
|
|
|
../../cal-pci-0000:01:00.0.bin \
|
|
|
|
$(1)/lib/firmware/ath10k/QCA9888/hw2.0/board.bin
|
|
|
|
$(INSTALL_DATA) \
|
|
|
|
$(PKG_BUILD_DIR)/QCA9888/hw2.0/board-2.bin \
|
|
|
|
$(1)/lib/firmware/ath10k/QCA9888/hw2.0/board-2.bin
|
|
|
|
$(INSTALL_DATA) \
|
|
|
|
$(DL_DIR)/$(call CT_FIRMWARE_FILE,QCA9888) \
|
|
|
|
$(1)/lib/firmware/ath10k/QCA9888/hw2.0/firmware-5.bin
|
|
|
|
endef
|
2018-03-21 17:29:03 +00:00
|
|
|
define Package/ath10k-firmware-qca9888-ct-htt/install
|
|
|
|
$(INSTALL_DIR) $(1)/lib/firmware/ath10k/QCA9888/hw2.0
|
|
|
|
ln -s \
|
|
|
|
../../cal-pci-0000:01:00.0.bin \
|
|
|
|
$(1)/lib/firmware/ath10k/QCA9888/hw2.0/board.bin
|
|
|
|
$(INSTALL_DATA) \
|
|
|
|
$(PKG_BUILD_DIR)/QCA9888/hw2.0/board-2.bin \
|
|
|
|
$(1)/lib/firmware/ath10k/QCA9888/hw2.0/board-2.bin
|
|
|
|
$(INSTALL_DATA) \
|
|
|
|
$(DL_DIR)/$(call CT_FIRMWARE_FILE_HTT,QCA9888) \
|
|
|
|
$(1)/lib/firmware/ath10k/QCA9888/hw2.0/ct-firmware-5.bin
|
|
|
|
endef
|
2017-05-16 22:44:20 +00:00
|
|
|
|
2016-08-22 10:03:36 +00:00
|
|
|
$(eval $(call BuildPackage,ath10k-firmware-qca9887))
|
2017-05-08 06:51:46 +00:00
|
|
|
$(eval $(call BuildPackage,ath10k-firmware-qca9888))
|
2015-10-30 22:01:18 +00:00
|
|
|
$(eval $(call BuildPackage,ath10k-firmware-qca988x))
|
2015-10-30 22:01:22 +00:00
|
|
|
$(eval $(call BuildPackage,ath10k-firmware-qca99x0))
|
2015-11-10 12:03:39 +00:00
|
|
|
$(eval $(call BuildPackage,ath10k-firmware-qca6174))
|
2016-06-09 16:18:14 +00:00
|
|
|
$(eval $(call BuildPackage,ath10k-firmware-qca9984))
|
2016-11-09 16:05:42 +00:00
|
|
|
$(eval $(call BuildPackage,ath10k-firmware-qca4019))
|
2016-05-29 18:14:59 +00:00
|
|
|
|
2017-01-27 00:11:27 +00:00
|
|
|
$(eval $(call BuildPackage,ath10k-firmware-qca9887-ct))
|
2018-03-21 17:29:03 +00:00
|
|
|
$(eval $(call BuildPackage,ath10k-firmware-qca9887-ct-htt))
|
2016-05-29 18:14:59 +00:00
|
|
|
$(eval $(call BuildPackage,ath10k-firmware-qca988x-ct))
|
2018-03-21 17:29:03 +00:00
|
|
|
$(eval $(call BuildPackage,ath10k-firmware-qca988x-ct-htt))
|
2016-05-29 18:14:59 +00:00
|
|
|
$(eval $(call BuildPackage,ath10k-firmware-qca99x0-ct))
|
2018-03-21 17:29:03 +00:00
|
|
|
$(eval $(call BuildPackage,ath10k-firmware-qca99x0-ct-htt))
|
2016-07-21 23:52:42 +00:00
|
|
|
$(eval $(call BuildPackage,ath10k-firmware-qca9984-ct))
|
2018-03-21 17:29:03 +00:00
|
|
|
$(eval $(call BuildPackage,ath10k-firmware-qca9984-ct-htt))
|
2018-01-20 00:27:04 +00:00
|
|
|
$(eval $(call BuildPackage,ath10k-firmware-qca4019-ct))
|
2018-03-21 17:29:03 +00:00
|
|
|
$(eval $(call BuildPackage,ath10k-firmware-qca4019-ct-htt))
|
2017-05-16 22:44:20 +00:00
|
|
|
$(eval $(call BuildPackage,ath10k-firmware-qca9888-ct))
|
2018-03-21 17:29:03 +00:00
|
|
|
$(eval $(call BuildPackage,ath10k-firmware-qca9888-ct-htt))
|