summaryrefslogtreecommitdiff
path: root/apps/nshlib
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-04-12 21:52:04 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-04-12 21:52:04 +0000
commit85ef12a1dab5e00054441f7a174e794077363206 (patch)
tree1a677683547e6004a03c65e5a1c39d8e7212b3c2 /apps/nshlib
parent60f90714242cfb8c972b881425a21a6be33676b1 (diff)
downloadpx4-nuttx-85ef12a1dab5e00054441f7a174e794077363206.tar.gz
px4-nuttx-85ef12a1dab5e00054441f7a174e794077363206.tar.bz2
px4-nuttx-85ef12a1dab5e00054441f7a174e794077363206.zip
Kconfig update
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4597 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'apps/nshlib')
-rw-r--r--apps/nshlib/Kconfig10
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/nshlib/Kconfig b/apps/nshlib/Kconfig
index 774a633e1..4a84148c9 100644
--- a/apps/nshlib/Kconfig
+++ b/apps/nshlib/Kconfig
@@ -126,10 +126,10 @@ config NSH_DISABLE_XD
endmenu
config NSH_FILEIOSIZE
- bool "NSH I/O buffer size"
+ int "NSH I/O buffer size"
default 1024
---help---
- Size of a static I/O buffer used for file access (ignored if
+ Size of a static I/O buffer used for file access (ignored if
there is no filesystem). Default is 1024.
config NSH_STRERROR
@@ -366,7 +366,7 @@ config NSH_DHCPC
if !NSH_DHCPC
config NSH_IPADDR
- int "Target IP address"
+ hex "Target IP address"
default 0x10000002
---help---
If NSH_DHCPC is NOT set, then the static IP address must be provided.
@@ -374,14 +374,14 @@ config NSH_IPADDR
0x10000002 would be 10.0.0.2.
config NSH_DRIPADDR
- int "Router IP address"
+ hex "Router IP address"
default 0x10000001
---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.
config NSH_NETMASK
- int "Network mask"
+ hex "Network mask"
default 0xffffff00
---help---
Network mask. This is a 32-bit integer value in host order. So, as