From 2d8d981fa08003789ed6b4abf69e553fa5901140 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Thu, 9 Jan 2014 13:39:40 -0600 Subject: 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. --- apps/nshlib/Kconfig | 4 ++-- 1 file 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. -- cgit v1.2.3