2012-04-06 15:49:35 +00:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2015-06-28 08:08:57 -06:00
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
2012-04-06 15:49:35 +00:00
|
|
|
#
|
2012-04-10 23:01:40 +00:00
|
|
|
|
2012-04-14 18:01:45 +00:00
|
|
|
config NFS
|
|
|
|
bool "NFS client file system"
|
|
|
|
default n
|
2021-08-30 12:05:40 +02:00
|
|
|
depends on !DISABLE_MOUNTPOINT && ALLOW_BSD_COMPONENTS
|
2022-08-03 15:25:06 +02:00
|
|
|
select FS_LARGEFILE
|
2012-04-14 18:01:45 +00:00
|
|
|
---help---
|
|
|
|
Enable network file system (NFS) client file system
|
|
|
|
|
2023-11-30 17:15:02 +08:00
|
|
|
if NFS
|
2012-04-14 18:01:45 +00:00
|
|
|
|
2023-06-30 14:57:33 +09:00
|
|
|
config NFS_DONT_BIND_TCP_SOCKET
|
|
|
|
bool
|
|
|
|
default n
|
2023-07-02 21:47:46 +03:00
|
|
|
depends on NET_TCP
|
2023-06-30 14:57:33 +09:00
|
|
|
---help---
|
|
|
|
Some network drivers such as GS2200M do not support to bind
|
|
|
|
a local port for TCP client socket. In this case, this config
|
|
|
|
disables to bind the port.
|
|
|
|
|
2012-06-14 00:47:42 +00:00
|
|
|
config NFS_STATISTICS
|
2020-03-30 09:00:51 -06:00
|
|
|
bool "NFS Statistics"
|
2012-04-14 18:01:45 +00:00
|
|
|
default n
|
|
|
|
depends on NFS
|
|
|
|
---help---
|
2012-06-14 00:47:42 +00: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-14 18:01:45 +00:00
|
|
|
|
2023-11-30 17:15:02 +08:00
|
|
|
endif
|