Kconfig 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. config AFS_FS
  3. tristate "Andrew File System support (AFS)"
  4. depends on INET
  5. select AF_RXRPC
  6. select DNS_RESOLVER
  7. select NETFS_SUPPORT
  8. select CRYPTO_KRB5
  9. help
  10. If you say Y here, you will get an experimental Andrew File System
  11. driver. It currently only supports unsecured read-only AFS access.
  12. See <file:Documentation/filesystems/afs.rst> for more information.
  13. If unsure, say N.
  14. config AFS_DEBUG
  15. bool "AFS dynamic debugging"
  16. depends on AFS_FS
  17. help
  18. Say Y here to make runtime controllable debugging messages appear.
  19. See <file:Documentation/filesystems/afs.rst> for more information.
  20. If unsure, say N.
  21. config AFS_FSCACHE
  22. bool "Provide AFS client caching support"
  23. depends on AFS_FS=m && FSCACHE || AFS_FS=y && FSCACHE=y
  24. help
  25. Say Y here if you want AFS data to be cached locally on disk through
  26. the generic filesystem cache manager
  27. config AFS_DEBUG_CURSOR
  28. bool "AFS server cursor debugging"
  29. depends on AFS_FS
  30. help
  31. Say Y here to cause the contents of a server cursor to be dumped to
  32. the dmesg log if the server rotation algorithm fails to successfully
  33. contact a server.
  34. See <file:Documentation/filesystems/afs.rst> for more information.
  35. If unsure, say N.