summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-03-04 11:10:31 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-03-04 11:10:31 -0600
commit9f10c5d8f123aeb4ef18eabea11cdb5323eb5f62 (patch)
treeb01c912106101dafd89764b8a87825c3c5688459 /apps
parent0badcf938772b2d505491a32c81ee031bafafda1 (diff)
downloadnuttx-9f10c5d8f123aeb4ef18eabea11cdb5323eb5f62.tar.gz
nuttx-9f10c5d8f123aeb4ef18eabea11cdb5323eb5f62.tar.bz2
nuttx-9f10c5d8f123aeb4ef18eabea11cdb5323eb5f62.zip
configs/stm3240g-eval/telnetd: Configuration converted to use the kconfig-frontends tools
Diffstat (limited to 'apps')
-rw-r--r--apps/examples/telnetd/Kconfig50
1 files changed, 50 insertions, 0 deletions
diff --git a/apps/examples/telnetd/Kconfig b/apps/examples/telnetd/Kconfig
index 11f94a86f..80753d8f5 100644
--- a/apps/examples/telnetd/Kconfig
+++ b/apps/examples/telnetd/Kconfig
@@ -10,4 +10,54 @@ config EXAMPLES_TELNETD
Enable the Telnet daemon example
if EXAMPLES_TELNETD
+
+config EXAMPLES_TELNETD_NOMAC
+ bool "Use Canned MAC Address"
+ default n
+ ---help---
+ If the hardware has no MAC address of its own, define this =y to
+ provide a bogus address for testing.
+
+config EXAMPLES_TELNETD_IPADDR
+ hex "Target IP address"
+ default 0x0a000002
+ ---help---
+ The target IP address. Default 10.0.0.2 (0x0a000002)
+
+config EXAMPLES_TELNETD_DRIPADDR
+ hex "Default Router IP address (Gateway)"
+ default 0x0a000001
+ ---help---
+ The default router address. Default 10.0.0.1 (0x0a000001)
+
+config EXAMPLES_TELNETD_NETMASK
+ hex "Network Mask"
+ default 0xffffff00
+ ---help---
+ The network mask. Default: 255.255.255.0 (0xffffff00)
+
+config EXAMPLES_TELNETD_DAEMONPRIO
+ int "Telnet daemon priority"
+ default 100
+ ---help---
+ Priority of the Telnetd server daemon. Default: 100
+
+config EXAMPLES_TELNETD_DAEMONSTACKSIZE
+ int "Telnet daemon stack size"
+ default 2048
+ ---help---
+ Stack size allocated for the Telnet daemon. Default: 2048
+
+config EXAMPLES_TELNETD_CLIENTPRIO
+ int "Telnet client priority"
+ default 100
+ ---help---
+ Priority of the Telnet client. Default: 100
+
+config EXAMPLES_TELNETD_CLIENTSTACKSIZE
+ int "Telnet client stack size"
+ default 2048
+ ---help---
+ Stack size allocated for the Telnet client. Default: 2048
+
endif