walnux/fs/v9fs/Kconfig
chenrun1 4d17c353dd v9fs:socket driver
Summary:
  1.Add new api for socket parsing header - v9fs_parse_size
  2.Add socket driver for 9pfs

Signed-off-by: chenrun1 <chenrun1@xiaomi.com>
2025-01-20 17:12:14 +08:00

29 lines
527 B
Text

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config FS_V9FS
bool "V9FS file system"
default n
depends on !DISABLE_MOUNTPOINT
---help---
Enable V9FS filesystem support
if FS_V9FS
config V9FS_DEFAULT_MSIZE
int "V9FS Default message max size"
default 65536
config V9FS_VIRTIO_9P
bool "Virtio 9P support"
depends on DRIVERS_VIRTIO
default n
config V9FS_SOCKET_9P
bool "Socket 9P support"
depends on NET_TCP
default n
endif