2012-04-06 23:49:35 +08:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2015-06-28 22:08:57 +08:00
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
2012-04-06 23:49:35 +08:00
|
|
|
#
|
2012-04-11 07:01:40 +08:00
|
|
|
|
2012-04-15 02:01:45 +08:00
|
|
|
config NFS
|
|
|
|
bool "NFS client file system"
|
|
|
|
default n
|
2020-03-01 17:24:29 +08:00
|
|
|
depends on !DISABLE_MOUNTPOINT
|
2013-11-15 23:49:27 +08:00
|
|
|
select FS_READABLE
|
|
|
|
select FS_WRITABLE
|
2012-04-15 02:01:45 +08:00
|
|
|
---help---
|
|
|
|
Enable network file system (NFS) client file system
|
|
|
|
|
|
|
|
#if NFS
|
|
|
|
|
2012-06-14 08:47:42 +08:00
|
|
|
config NFS_STATISTICS
|
2018-07-09 08:24:45 +08:00
|
|
|
bool "NFS Statics"
|
2012-04-15 02:01:45 +08:00
|
|
|
default n
|
|
|
|
depends on NFS
|
|
|
|
---help---
|
2012-06-14 08:47:42 +08:00
|
|
|
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.
|
2012-04-15 02:01:45 +08:00
|
|
|
|
2012-06-14 08:47:42 +08:00
|
|
|
#endif
|