2016-07-13 15:16:26 +00:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=ath10k-ct
|
|
|
|
PKG_RELEASE=1
|
|
|
|
|
|
|
|
PKG_LICENSE:=GPLv2
|
|
|
|
PKG_LICENSE_FILES:=
|
|
|
|
|
|
|
|
PKG_SOURCE_URL:=https://github.com/greearb/ath10k-ct.git
|
|
|
|
PKG_SOURCE_PROTO:=git
|
2017-01-27 00:11:26 +00:00
|
|
|
PKG_SOURCE_DATE:=2017-01-26
|
|
|
|
PKG_SOURCE_VERSION:=d2bc84ff277936c58231f0c2280242eda4199e63
|
|
|
|
PKG_MIRROR_HASH:=6b734b987db00b97b06faca686dcebc56fb23b93093afbb35d5cf534987269bf
|
2016-07-13 15:16:26 +00:00
|
|
|
|
|
|
|
PKG_MAINTAINER:=Ben Greear <greearb@candelatech.com>
|
|
|
|
PKG_BUILD_PARALLEL:=1
|
|
|
|
|
|
|
|
STAMP_CONFIGURED_DEPENDS := $(STAGING_DIR)/usr/include/mac80211-backport/backport/autoconf.h
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/kernel.mk
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define KernelPackage/ath10k-ct
|
|
|
|
SUBMENU:=Wireless Drivers
|
|
|
|
TITLE:=ath10k-ct driver optimized for CT ath10k firmware
|
2016-12-14 04:13:22 +00:00
|
|
|
DEPENDS:=+kmod-mac80211 +kmod-ath +@DRIVER_11N_SUPPORT +@DRIVER_11AC_SUPPORT @PCI_SUPPORT +@KERNEL_RELAY
|
2016-07-13 15:16:26 +00:00
|
|
|
FILES:=\
|
|
|
|
$(PKG_BUILD_DIR)/ath10k/ath10k_pci.ko \
|
|
|
|
$(PKG_BUILD_DIR)/ath10k/ath10k_core.ko
|
|
|
|
AUTOLOAD:=$(call AutoLoad,50,mac80211 ath ath10k_core ath10k_pci)
|
|
|
|
endef
|
|
|
|
|
|
|
|
NOSTDINC_FLAGS = \
|
|
|
|
-I$(PKG_BUILD_DIR) \
|
|
|
|
-I$(STAGING_DIR)/usr/include/mac80211-backport/uapi \
|
|
|
|
-I$(STAGING_DIR)/usr/include/mac80211-backport \
|
|
|
|
-I$(STAGING_DIR)/usr/include/mac80211/uapi \
|
|
|
|
-I$(STAGING_DIR)/usr/include/mac80211 \
|
|
|
|
-include backport/autoconf.h \
|
|
|
|
-include backport/backport.h
|
|
|
|
|
|
|
|
ifdef CONFIG_PACKAGE_MAC80211_MESH
|
|
|
|
NOSTDINC_FLAGS += -DCONFIG_MAC80211_MESH
|
|
|
|
endif
|
|
|
|
|
|
|
|
CT_MAKEDEFS += CONFIG_ATH10K=m CONFIG_ATH10K_PCI=m
|
|
|
|
# No AHB support enabled yet. Could conditionally enable it later.
|
|
|
|
#CT_MAKEDEFS += CONFIG_ATH10K_AHB=y
|
|
|
|
#NOSTDINC_FLAGS += -DCONFIG_ATH10K_AHB
|
|
|
|
NOSTDINC_FLAGS += -DSTANDALONE_CT
|
|
|
|
|
|
|
|
ifdef CONFIG_PACKAGE_MAC80211_DEBUGFS
|
|
|
|
CT_MAKEDEFS += CONFIG_ATH10K_DEBUGFS=y CONFIG_MAC80211_DEBUGFS=y
|
|
|
|
NOSTDINC_FLAGS += -DCONFIG_MAC80211_DEBUGFS
|
|
|
|
NOSTDINC_FLAGS += -DCONFIG_ATH10K_DEBUGFS
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef CONFIG_PACKAGE_ATH_DEBUG
|
|
|
|
NOSTDINC_FLAGS += -DCONFIG_ATH10K_DEBUG
|
|
|
|
endif
|
|
|
|
|
2016-12-18 19:06:06 +00:00
|
|
|
ifdef CONFIG_PACKAGE_ATH_DFS
|
|
|
|
NOSTDINC_FLAGS += -DCONFIG_ATH10K_DFS_CERTIFIED
|
|
|
|
endif
|
|
|
|
|
2016-07-13 15:16:26 +00:00
|
|
|
define Build/Configure
|
|
|
|
cp $(STAGING_DIR)/usr/include/mac80211/ath/*.h $(PKG_BUILD_DIR)
|
|
|
|
endef
|
|
|
|
|
|
|
|
ifneq ($(findstring c,$(OPENWRT_VERBOSE)),)
|
|
|
|
CT_MAKEDEFS += V=1
|
|
|
|
endif
|
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
+$(MAKE) $(CT_MAKEDEFS) $(PKG_JOBS) -C "$(LINUX_DIR)" \
|
|
|
|
ARCH="$(LINUX_KARCH)" \
|
|
|
|
CROSS_COMPILE="$(TARGET_CROSS)" \
|
|
|
|
SUBDIRS="$(PKG_BUILD_DIR)/ath10k" \
|
|
|
|
NOSTDINC_FLAGS="$(NOSTDINC_FLAGS)" \
|
|
|
|
modules
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call KernelPackage,ath10k-ct))
|