[openwrt/openwrt] kernel: decouple 9P virtio from 9P net

LEDE Commits lede-commits at lists.infradead.org
Thu Sep 14 14:45:18 PDT 2023


lynxis pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/c1206675a4c23e3ec93599a705becc141c71c675

commit c1206675a4c23e3ec93599a705becc141c71c675
Author: Daniel Maslowski <info at orangecms.org>
AuthorDate: Thu Sep 14 21:56:58 2023 +0200

    kernel: decouple 9P virtio from 9P net
    
    General support for 9P is desirable on platforms without virtualization.
    This decouples the 9P general networking support for use on more platforms.
    
    Signed-off-by: Daniel Maslowski <info at orangecms.org>
---
 package/kernel/linux/modules/netsupport.mk | 27 +++++++++++++++++++++------
 1 file changed, 21 insertions(+), 6 deletions(-)

diff --git a/package/kernel/linux/modules/netsupport.mk b/package/kernel/linux/modules/netsupport.mk
index 5b978bae7b..fcf327b434 100644
--- a/package/kernel/linux/modules/netsupport.mk
+++ b/package/kernel/linux/modules/netsupport.mk
@@ -1324,17 +1324,13 @@ $(eval $(call KernelPackage,mpls))
 define KernelPackage/9pnet
   SUBMENU:=$(NETWORK_SUPPORT_MENU)
   TITLE:=Plan 9 Resource Sharing Support (9P2000)
-  DEPENDS:=@VIRTIO_SUPPORT
   KCONFIG:= \
 	CONFIG_NET_9P \
 	CONFIG_NET_9P_DEBUG=n \
-	CONFIG_NET_9P_XEN=n \
-	CONFIG_NET_9P_VIRTIO \
 	CONFIG_NET_9P_FD=n at ge5.17
   FILES:= \
-	$(LINUX_DIR)/net/9p/9pnet.ko \
-	$(LINUX_DIR)/net/9p/9pnet_virtio.ko
-  AUTOLOAD:=$(call AutoLoad,29,9pnet 9pnet_virtio)
+	$(LINUX_DIR)/net/9p/9pnet.ko
+  AUTOLOAD:=$(call AutoLoad,29,9pnet)
 endef
 
 define KernelPackage/9pnet/description
@@ -1344,6 +1340,25 @@ endef
 
 $(eval $(call KernelPackage,9pnet))
 
+define KernelPackage/9pvirtio
+  SUBMENU:=$(NETWORK_SUPPORT_MENU)
+  TITLE:=Plan 9 Virtio Support
+  DEPENDS:=+kmod-9pnet @VIRTIO_SUPPORT
+  KCONFIG:= \
+	CONFIG_NET_9P_XEN=n \
+	CONFIG_NET_9P_VIRTIO
+  FILES:= \
+	$(LINUX_DIR)/net/9p/9pnet_virtio.ko
+  AUTOLOAD:=$(call AutoLoad,29,9pnet_virtio)
+endef
+
+define KernelPackage/9pvirtio/description
+  Kernel support support for
+  Plan 9 resource sharing for virtio.
+endef
+
+$(eval $(call KernelPackage,9pvirtio))
+
 
 define KernelPackage/nlmon
   SUBMENU:=$(NETWORK_SUPPORT_MENU)




More information about the lede-commits mailing list