|
|
@@ -1438,3 +1438,67 @@ define KernelPackage/netconsole/description
|
|
|
endef
|
|
|
|
|
|
$(eval $(call KernelPackage,netconsole))
|
|
|
+
|
|
|
+
|
|
|
+define KernelPackage/qrtr
|
|
|
+ SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
|
|
+ TITLE:=Qualcomm IPC Router support
|
|
|
+ HIDDEN:=1
|
|
|
+ DEPENDS:=@!LINUX_5_10
|
|
|
+ KCONFIG:=CONFIG_QRTR
|
|
|
+ FILES:= \
|
|
|
+ $(LINUX_DIR)/net/qrtr/qrtr.ko \
|
|
|
+ $(LINUX_DIR)/net/qrtr/ns.ko
|
|
|
+ AUTOLOAD:=$(call AutoProbe,qrtr)
|
|
|
+endef
|
|
|
+
|
|
|
+define KernelPackage/qrtr/description
|
|
|
+ Qualcomm IPC Router support
|
|
|
+endef
|
|
|
+
|
|
|
+$(eval $(call KernelPackage,qrtr))
|
|
|
+
|
|
|
+define KernelPackage/qrtr-tun
|
|
|
+ SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
|
|
+ TITLE:=TUN device for Qualcomm IPC Router
|
|
|
+ DEPENDS:=+kmod-qrtr
|
|
|
+ KCONFIG:=CONFIG_QRTR_TUN
|
|
|
+ FILES:= $(LINUX_DIR)/net/qrtr/qrtr-tun.ko
|
|
|
+ AUTOLOAD:=$(call AutoProbe,qrtr-tun)
|
|
|
+endef
|
|
|
+
|
|
|
+define KernelPackage/qrtr-tun/description
|
|
|
+ TUN device for Qualcomm IPC Router
|
|
|
+endef
|
|
|
+
|
|
|
+$(eval $(call KernelPackage,qrtr-tun))
|
|
|
+
|
|
|
+define KernelPackage/qrtr-smd
|
|
|
+ SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
|
|
+ TITLE:=SMD IPC Router channels
|
|
|
+ DEPENDS:=+kmod-qrtr @TARGET_ipq807x
|
|
|
+ KCONFIG:=CONFIG_QRTR_SMD
|
|
|
+ FILES:= $(LINUX_DIR)/net/qrtr/qrtr-smd.ko
|
|
|
+ AUTOLOAD:=$(call AutoProbe,qrtr-smd)
|
|
|
+endef
|
|
|
+
|
|
|
+define KernelPackage/qrtr-smd/description
|
|
|
+ SMD IPC Router channels
|
|
|
+endef
|
|
|
+
|
|
|
+$(eval $(call KernelPackage,qrtr-smd))
|
|
|
+
|
|
|
+define KernelPackage/qrtr-mhi
|
|
|
+ SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
|
|
+ TITLE:=MHI IPC Router channels
|
|
|
+ DEPENDS:=+kmod-mhi-bus +kmod-qrtr
|
|
|
+ KCONFIG:=CONFIG_QRTR_MHI
|
|
|
+ FILES:= $(LINUX_DIR)/net/qrtr/qrtr-mhi.ko
|
|
|
+ AUTOLOAD:=$(call AutoProbe,qrtr-mhi)
|
|
|
+endef
|
|
|
+
|
|
|
+define KernelPackage/qrtr-mhi/description
|
|
|
+ MHI IPC Router channels
|
|
|
+endef
|
|
|
+
|
|
|
+$(eval $(call KernelPackage,qrtr-mhi))
|