summaryrefslogtreecommitdiff
path: root/apps/nshlib
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-08-18 07:24:47 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-08-18 07:24:47 -0600
commite2d9a69df23894921f553f0a44b64a4b1ea7f999 (patch)
treed5bf162d345c8573128dc9202dd1df96733f6f93 /apps/nshlib
parentfaac807b1efaa28cf45cfefb3b65da291894f7e4 (diff)
downloadnuttx-e2d9a69df23894921f553f0a44b64a4b1ea7f999.tar.gz
nuttx-e2d9a69df23894921f553f0a44b64a4b1ea7f999.tar.bz2
nuttx-e2d9a69df23894921f553f0a44b64a4b1ea7f999.zip
Update README files, Kconfig help comments, and make the network monitor not EXPERIMENTAL
Diffstat (limited to 'apps/nshlib')
-rw-r--r--apps/nshlib/Kconfig8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/nshlib/Kconfig b/apps/nshlib/Kconfig
index 7bf8f32fa..b51b2931e 100644
--- a/apps/nshlib/Kconfig
+++ b/apps/nshlib/Kconfig
@@ -813,7 +813,7 @@ if NSH_NETINIT_THREAD
config NSH_NETINIT_MONITOR
bool "Monitor link state"
default n
- depends on ARCH_PHY_INTERRUPT && NETDEV_PHY_IOCTL && NET_UDP && !DISABLE_SIGNALS && EXPERIMENTAL
+ depends on ARCH_PHY_INTERRUPT && NETDEV_PHY_IOCTL && NET_UDP && !DISABLE_SIGNALS
---help---
By default the net initialization thread will bring-up the network
then exit, freeing all of the resources that it required. This is a
@@ -822,10 +822,12 @@ config NSH_NETINIT_MONITOR
If this option is selected, however, then the network initialization
thread will persist forever; it will monitor the network status. In
the event that the network goes down (for example, if a cable is
- removed), then the the thread will monitor the link status and
+ removed), then the thread will monitor the link status and
attempt to bring the network back up. In this case the resources
required for network initialization are never released.
+if NSH_NETINIT_MONITOR
+
config NSH_NETINIT_SIGNO
int "Notification signal number"
default 18
@@ -834,8 +836,6 @@ config NSH_NETINIT_SIGNO
change in the link status. This setting may be used to customize
that signal number in order to avoid conflicts.
-if NSH_NETINIT_MONITOR
-
config NSH_NETINIT_RETRYMSEC
int "Network bring-up retry period (msec)"
default 2000