mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-18 07:23:59 +00:00
kernel: Make QMI Helpers user selectable in 5.18
This commit is contained in:
parent
5d92792d40
commit
faf4476659
package/kernel/mac80211
target/linux/generic/hack-5.18
@ -344,7 +344,7 @@ define KernelPackage/ath11k-ahb
|
||||
$(call KernelPackage/mac80211/Default)
|
||||
TITLE:=Qualcomm 802.11ax AHB wireless chipset support
|
||||
URL:=https://wireless.wiki.kernel.org/en/users/drivers/ath11k
|
||||
DEPENDS+= @TARGET_ipq807x +kmod-ath11k +LINUX_5_15:kmod-qrtr-smd
|
||||
DEPENDS+= @TARGET_ipq807x +kmod-ath11k +(LINUX_5_15||LINUX_5_18):kmod-qrtr-smd
|
||||
FILES:=$(PKG_BUILD_DIR)/drivers/net/wireless/ath/ath11k/ath11k_ahb.ko
|
||||
AUTOLOAD:=$(call AutoProbe,ath11k_ahb)
|
||||
endef
|
||||
@ -358,7 +358,7 @@ define KernelPackage/ath11k-pci
|
||||
$(call KernelPackage/mac80211/Default)
|
||||
TITLE:=Qualcomm 802.11ax PCI wireless chipset support
|
||||
URL:=https://wireless.wiki.kernel.org/en/users/drivers/ath11k
|
||||
DEPENDS+= @PCI_SUPPORT +LINUX_5_15:kmod-qrtr-mhi +kmod-ath11k
|
||||
DEPENDS+= @PCI_SUPPORT +(LINUX_5_15||LINUX_5_18):kmod-qrtr-mhi +kmod-ath11k
|
||||
FILES:=$(PKG_BUILD_DIR)/drivers/net/wireless/ath/ath11k/ath11k_pci.ko
|
||||
AUTOLOAD:=$(call AutoProbe,ath11k_pci)
|
||||
endef
|
||||
|
@ -0,0 +1,28 @@
|
||||
From b9b94712847f8fa6ca8dc03422ba9e0332b6997d Mon Sep 17 00:00:00 2001
|
||||
From: Robert Marko <robimarko@gmail.com>
|
||||
Date: Thu, 13 May 2021 14:54:43 +0200
|
||||
Subject: [PATCH] soc: qcom: Make QMI Helpers user selectable
|
||||
|
||||
Wireless backports for ath11k have a different logic
|
||||
then upstream as they depend on QMI helpers instead
|
||||
of selecting them.
|
||||
|
||||
So, to make it possible to select QMI helpers
|
||||
through KConfig add text to tristate.
|
||||
|
||||
Signed-off-by: Robert Marko <robimarko@gmail.com>
|
||||
---
|
||||
drivers/soc/qcom/Kconfig | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
--- a/drivers/soc/qcom/Kconfig
|
||||
+++ b/drivers/soc/qcom/Kconfig
|
||||
@@ -92,7 +92,7 @@ config QCOM_PDR_HELPERS
|
||||
select QCOM_QMI_HELPERS
|
||||
|
||||
config QCOM_QMI_HELPERS
|
||||
- tristate
|
||||
+ tristate "Qualcomm QMI helpers"
|
||||
depends on NET
|
||||
|
||||
config QCOM_RMTFS_MEM
|
Loading…
Reference in New Issue
Block a user