Kconfig 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. config 9P_FS
  2. tristate "Plan 9 Resource Sharing Support (9P2000)"
  3. depends on INET && NET_9P
  4. help
  5. If you say Y here, you will get experimental support for
  6. Plan 9 resource sharing via the 9P2000 protocol.
  7. See <http://v9fs.sf.net> for more information.
  8. If unsure, say N.
  9. if 9P_FS
  10. config 9P_FSCACHE
  11. bool "Enable 9P client caching support"
  12. depends on 9P_FS=m && FSCACHE || 9P_FS=y && FSCACHE=y
  13. help
  14. Choose Y here to enable persistent, read-only local
  15. caching support for 9p clients using FS-Cache
  16. config 9P_FS_POSIX_ACL
  17. bool "9P POSIX Access Control Lists"
  18. select FS_POSIX_ACL
  19. help
  20. POSIX Access Control Lists (ACLs) support permissions for users and
  21. groups beyond the owner/group/world scheme.
  22. To learn more about Access Control Lists, visit the POSIX ACLs for
  23. Linux website <http://acl.bestbits.at/>.
  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.