summaryrefslogtreecommitdiff
path: root/nuttx/fs/nfs/Kconfig
blob: 6a06555f4494a7033ff603bc2ca0b65574c38512 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#

config NFS
	bool "NFS client file system"
	default n
	depends on NET_UDP && !DISABLE_MOUNTPOINT
	select FS_READABLE
	select FS_WRITABLE
	---help---
		Enable network file system (NFS) client file system

#if NFS

config NFS_STATISTICS
	bool "NFS Stastics"
	default n
	depends on NFS
	---help---
		Collect support for NFS statistics.  There is no user interface to
		obtain these statistics, however.  So they would only be of value
		if you add debug instrumentation or use a debugger.

#endif