diff options
author | Ansuel Smith <ansuelsmth@gmail.com> | 2018-09-28 02:24:58 +0200 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2018-09-28 22:47:21 +0200 |
commit | 39a96205474fa82e37d756399fde01d2964d3125 (patch) | |
tree | 36240d59663ddca201dff82101fc269683433436 /package/kernel/ath10k-ct/Makefile | |
parent | 3f7f27892ee2072b0374555fc7cb2a4a4fce702b (diff) | |
download | upstream-39a96205474fa82e37d756399fde01d2964d3125.tar.gz upstream-39a96205474fa82e37d756399fde01d2964d3125.tar.bz2 upstream-39a96205474fa82e37d756399fde01d2964d3125.zip |
ath10k-ct: adds leds support
This rework and adds patch from ath10k source to make leds work also on candela source
Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
Diffstat (limited to 'package/kernel/ath10k-ct/Makefile')
-rw-r--r-- | package/kernel/ath10k-ct/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/package/kernel/ath10k-ct/Makefile b/package/kernel/ath10k-ct/Makefile index 366515189a..d39ecabf46 100644 --- a/package/kernel/ath10k-ct/Makefile +++ b/package/kernel/ath10k-ct/Makefile @@ -37,6 +37,14 @@ define KernelPackage/ath10k-ct PROVIDES:=kmod-ath10k endef +define KernelPackage/ath10k-ct/config + + config ATH10K-CT_LEDS + bool "Enable LED support" + default y + depends on PACKAGE_kmod-ath10k-ct +endef + NOSTDINC_FLAGS = \ -I$(PKG_BUILD_DIR) \ -I$(STAGING_DIR)/usr/include/mac80211-backport/uapi \ @@ -77,6 +85,11 @@ ifdef CONFIG_PACKAGE_ATH_SPECTRAL NOSTDINC_FLAGS += -DCONFIG_ATH10K_SPECTRAL endif +ifeq ($(CONFIG_ATH10K-CT_LEDS),y) + CT_MAKEDEFS += CONFIG_ATH10K_LEDS=y + NOSTDINC_FLAGS += -DCONFIG_ATH10K_LEDS +endif + define Build/Configure cp $(STAGING_DIR)/usr/include/mac80211/ath/*.h $(PKG_BUILD_DIR) endef |