summaryrefslogtreecommitdiff
path: root/cmd/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/Kconfig')
-rw-r--r--cmd/Kconfig28
1 files changed, 14 insertions, 14 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig
index b71ac554c0b..595ac49da41 100644
--- a/cmd/Kconfig
+++ b/cmd/Kconfig
@@ -2116,20 +2116,6 @@ config CMD_RARP
help
Boot image via network using RARP/TFTP protocol
-config CMD_NFS
- bool "nfs"
- help
- Boot image via network using NFS protocol.
-
-config NFS_TIMEOUT
- int "Timeout in milliseconds for NFS mounts"
- depends on CMD_NFS
- default 2000
- help
- Timeout in milliseconds used in NFS protocol. If you encounter
- "ERROR: Cannot umount" in nfs command, try longer timeout such as
- 10000.
-
config SYS_DISABLE_AUTOLOAD
bool "Disable automatically loading files over the network"
depends on CMD_BOOTP || CMD_DHCP || CMD_NFS || CMD_RARP
@@ -2224,6 +2210,20 @@ config CMD_MDIO
The MDIO interface is orthogonal to the MII interface and extends
it by adding access to more registers through indirect addressing.
+config CMD_NFS
+ bool "nfs"
+ help
+ Boot image via network using NFS protocol.
+
+config NFS_TIMEOUT
+ int "Timeout in milliseconds for NFS mounts"
+ depends on CMD_NFS
+ default 2000
+ help
+ Timeout in milliseconds used in NFS protocol. If you encounter
+ "ERROR: Cannot umount" in nfs command, try longer timeout such as
+ 10000.
+
config CMD_PING
bool "ping"
select PROT_RAW_LWIP if NET_LWIP