51 lines
1.3 KiB
Makefile
51 lines
1.3 KiB
Makefile
|
#
|
||
|
# 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
|
||
|
PKG_SOURCE_VERSION:=7d14e337ad25c0ef3e78fc47eac336697ca612e8
|
||
|
PKG_VERSION:=2014-10-28-$(PKG_SOURCE_VERSION)
|
||
|
PKG_RELEASE:=1
|
||
|
|
||
|
PKG_SOURCE_PROTO:=git
|
||
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
||
|
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
|
||
|
PKG_SOURCE_URL:=https://github.com/kvalo/ath10k-firmware.git
|
||
|
|
||
|
PKG_MAINTAINER:=Felix Fietkau <nbd@openwrt.org>
|
||
|
|
||
|
include $(INCLUDE_DIR)/package.mk
|
||
|
|
||
|
WMENU:=Wireless Drivers
|
||
|
|
||
|
define Package/ath10k-firmware-qca988x
|
||
|
SECTION:=kernel
|
||
|
CATEGORY:=Kernel modules
|
||
|
SUBMENU:=$(WMENU)
|
||
|
URL:=$(PKG_SOURCE_URL)
|
||
|
DEFAULT:=PACKAGE_kmod-ath10k
|
||
|
DEPENDS:=kmod-ath10k
|
||
|
TITLE:=ath10k firmware for QCA988x devices
|
||
|
endef
|
||
|
|
||
|
define Build/Compile
|
||
|
|
||
|
endef
|
||
|
|
||
|
define Package/ath10k-firmware-qca988x/install
|
||
|
$(INSTALL_DIR) $(1)/lib/firmware/ath10k/QCA988X/hw2.0
|
||
|
$(INSTALL_DATA) \
|
||
|
$(PKG_BUILD_DIR)/ath10k/QCA988X/hw2.0/board.bin \
|
||
|
$(1)/lib/firmware/ath10k/QCA988X/hw2.0/
|
||
|
$(INSTALL_DATA) \
|
||
|
$(PKG_BUILD_DIR)/QCA988X/10.2.4/firmware-5.bin_10.2.4.70-2 \
|
||
|
$(1)/lib/firmware/ath10k/QCA988X/hw2.0/firmware-5.bin
|
||
|
endef
|
||
|
|
||
|
$(eval $(call BuildPackage,ath10k-firmware-qca988x))
|