Kconfig 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. config 9P_FS
  3. tristate "Plan 9 Resource Sharing Support (9P2000)"
  4. depends on NET_9P
  5. select NETFS_SUPPORT
  6. help
  7. If you say Y here, you will get experimental support for
  8. Plan 9 resource sharing via the 9P2000 protocol.
  9. See <http://v9fs.sf.net> for more information.
  10. If unsure, say N.
  11. if 9P_FS
  12. config 9P_FSCACHE
  13. bool "Enable 9P client caching support"
  14. depends on 9P_FS=m && FSCACHE || 9P_FS=y && FSCACHE=y
  15. help
  16. Choose Y here to enable persistent, read-only local
  17. caching support for 9p clients using FS-Cache
  18. config 9P_FS_POSIX_ACL
  19. bool "9P POSIX Access Control Lists"
  20. select FS_POSIX_ACL
  21. help
  22. POSIX Access Control Lists (ACLs) support permissions for users and
  23. groups beyond the owner/group/world scheme.
  24. If you don't know what Access Control Lists are, say N
  25. endif
  26. config 9P_FS_SECURITY
  27. bool "9P Security Labels"
  28. depends on 9P_FS
  29. help
  30. Security labels support alternative access control models
  31. implemented by security modules like SELinux. This option
  32. enables an extended attribute handler for file security
  33. labels in the 9P filesystem.
  34. If you are not using a security module that requires using
  35. extended attributes for file security labels, say N.