Kconfig 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. #
  2. # 9P protocol configuration
  3. #
  4. menuconfig NET_9P
  5. depends on NET && EXPERIMENTAL
  6. tristate "Plan 9 Resource Sharing Support (9P2000) (Experimental)"
  7. help
  8. If you say Y here, you will get experimental support for
  9. Plan 9 resource sharing via the 9P2000 protocol.
  10. See <http://v9fs.sf.net> for more information.
  11. If unsure, say N.
  12. config NET_9P_FD
  13. depends on NET_9P
  14. default y if NET_9P
  15. tristate "9P File Descriptor Transports (Experimental)"
  16. help
  17. This builds support for file descriptor transports for 9p
  18. which includes support for TCP/IP, named pipes, or passed
  19. file descriptors. TCP/IP is the default transport for 9p,
  20. so if you are going to use 9p, you'll likely want this.
  21. config NET_9P_VIRTIO
  22. depends on NET_9P && EXPERIMENTAL && VIRTIO
  23. tristate "9P Virtio Transport (Experimental)"
  24. help
  25. This builds support for a transports between
  26. guest partitions and a host partition.
  27. config NET_9P_DEBUG
  28. bool "Debug information"
  29. depends on NET_9P
  30. help
  31. Say Y if you want the 9P subsystem to log debug information.