mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-10-30 10:02:53 +00:00
41 lines
1.5 KiB
Diff
41 lines
1.5 KiB
Diff
From ff6d59ce79976176caaee181b2a75dc17fb4df41 Mon Sep 17 00:00:00 2001
|
|
From: John Crispin <john@phrozen.org>
|
|
Date: Sun, 6 Aug 2023 09:46:57 +0200
|
|
Subject: [PATCH] ipq807x: fix usb dwc3 dependencies
|
|
|
|
Signed-off-by: John Crispin <john@phrozen.org>
|
|
---
|
|
package/kernel/linux/modules/usb.mk | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/package/kernel/linux/modules/usb.mk b/package/kernel/linux/modules/usb.mk
|
|
index 2561f36aa3..721cc7893b 100644
|
|
--- a/package/kernel/linux/modules/usb.mk
|
|
+++ b/package/kernel/linux/modules/usb.mk
|
|
@@ -494,7 +494,7 @@ $(eval $(call KernelPackage,usb-dwc3))
|
|
|
|
define KernelPackage/usb-dwc3-qcom
|
|
TITLE:=DWC3 Qualcomm USB driver
|
|
- DEPENDS:=@(TARGET_ipq40xx||TARGET_ipq806x||TARGET_ipq807x) +kmod-usb-dwc3
|
|
+ DEPENDS:=@(TARGET_ipq40xx||TARGET_ipq806x) +kmod-usb-dwc3
|
|
KCONFIG:= CONFIG_USB_DWC3_QCOM
|
|
FILES:= $(LINUX_DIR)/drivers/usb/dwc3/dwc3-qcom.ko
|
|
AUTOLOAD:=$(call AutoLoad,53,dwc3-qcom,1)
|
|
--
|
|
2.34.1
|
|
|
|
diff --git a/package/kernel/linux/modules/netsupport.mk b/package/kernel/linux/modules/netsupport.mk
|
|
index 27ba55a22d..d6b28c51b7 100644
|
|
--- a/package/kernel/linux/modules/netsupport.mk
|
|
+++ b/package/kernel/linux/modules/netsupport.mk
|
|
@@ -93,7 +93,8 @@ define KernelPackage/vxlan
|
|
+IPV6:kmod-udptunnel6
|
|
KCONFIG:=CONFIG_VXLAN
|
|
FILES:= \
|
|
- $(LINUX_DIR)/drivers/net/vxlan/vxlan.ko
|
|
+ $(LINUX_DIR)/drivers/net/vxlan/vxlan.ko@ge5.5 \
|
|
+ $(LINUX_DIR)/drivers/net/vxlan.ko@le5.4
|
|
AUTOLOAD:=$(call AutoLoad,13,vxlan)
|
|
endef
|
|
|