1# SPDX-License-Identifier: GPL-2.0-only 2config 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 13 See <file:Documentation/filesystems/afs.rst> for more information. 14 15 If unsure, say N. 16 17config AFS_DEBUG 18 bool "AFS dynamic debugging" 19 depends on AFS_FS 20 help 21 Say Y here to make runtime controllable debugging messages appear. 22 23 See <file:Documentation/filesystems/afs.rst> for more information. 24 25 If unsure, say N. 26 27config AFS_FSCACHE 28 bool "Provide AFS client caching support" 29 depends on AFS_FS=m && FSCACHE || AFS_FS=y && FSCACHE=y 30 help 31 Say Y here if you want AFS data to be cached locally on disk through 32 the generic filesystem cache manager 33 34config AFS_DEBUG_CURSOR 35 bool "AFS server cursor debugging" 36 depends on AFS_FS 37 help 38 Say Y here to cause the contents of a server cursor to be dumped to 39 the dmesg log if the server rotation algorithm fails to successfully 40 contact a server. 41 42 See <file:Documentation/filesystems/afs.rst> for more information. 43 44 If unsure, say N. 45