summaryrefslogtreecommitdiff
path: root/apps/nshlib
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-01-09 13:39:40 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-01-09 13:39:40 -0600
commit2d8d981fa08003789ed6b4abf69e553fa5901140 (patch)
tree72e275aa6c83a2a6a34dc96f4e7106723d3b06a9 /apps/nshlib
parentd34980194355681fdbac8ef6bdb18b9c5e8ba2e9 (diff)
downloadnuttx-2d8d981fa08003789ed6b4abf69e553fa5901140.tar.gz
nuttx-2d8d981fa08003789ed6b4abf69e553fa5901140.tar.bz2
nuttx-2d8d981fa08003789ed6b4abf69e553fa5901140.zip
NSH: Code expects CONFIG_NSH_DRIPADDR and CONFIG_NSH_NETMASK even if DHCPC is necessary. For now, just removed the dependency on DHCPC in the Kconfig file, but more thought is needed.
Diffstat (limited to 'apps/nshlib')
-rw-r--r--apps/nshlib/Kconfig4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/nshlib/Kconfig b/apps/nshlib/Kconfig
index 19216ecb3..09a0e5120 100644
--- a/apps/nshlib/Kconfig
+++ b/apps/nshlib/Kconfig
@@ -661,7 +661,7 @@ config NSH_IPADDR
config NSH_DRIPADDR
hex "Router IP address"
default 0x0a000001
- depends on NSH_LIBRARY && NET && !NSH_DHCPC
+ depends on NSH_LIBRARY && NET
---help---
Default router IP address (aka, Gateway). This is a 32-bit integer
value in host order. So, as an example, 0x10000001 would be 10.0.0.1.
@@ -669,7 +669,7 @@ config NSH_DRIPADDR
config NSH_NETMASK
hex "Network mask"
default 0xffffff00
- depends on NSH_LIBRARY && NET && !NSH_DHCPC
+ depends on NSH_LIBRARY && NET
---help---
Network mask. This is a 32-bit integer value in host order. So, as
an example, 0xffffff00 would be 255.255.255.0.