summaryrefslogtreecommitdiff
path: root/apps/examples
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-03-03 13:10:11 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-03-03 13:10:11 -0600
commit20f887f05c52bc05c010374c246bf16c83aafa62 (patch)
tree46904c3cefd833cf6becb73e55929faa85278723 /apps/examples
parent2c1857df0705b799883b0bc49920b52f6e976e42 (diff)
downloadnuttx-20f887f05c52bc05c010374c246bf16c83aafa62.tar.gz
nuttx-20f887f05c52bc05c010374c246bf16c83aafa62.tar.bz2
nuttx-20f887f05c52bc05c010374c246bf16c83aafa62.zip
configs/ez80f910200zco/dhcpd converted to use the kconfig-frontends tools
Diffstat (limited to 'apps/examples')
-rw-r--r--apps/examples/dhcpd/Kconfig17
1 files changed, 17 insertions, 0 deletions
diff --git a/apps/examples/dhcpd/Kconfig b/apps/examples/dhcpd/Kconfig
index 10f513eca..63b89049a 100644
--- a/apps/examples/dhcpd/Kconfig
+++ b/apps/examples/dhcpd/Kconfig
@@ -10,5 +10,22 @@ config EXAMPLES_DHCPD
Enable the DHCP server example
if EXAMPLES_DHCPD
+
+config EXAMPLES_DHCPD_NOMAC
+ bool "Use Canned MAC Address"
+ default n
+
+config EXAMPLES_DHCPD_IPADDR
+ hex "Target IP address"
+ default 0x0a000002
+
+config EXAMPLES_DHCPD_DRIPADDR
+ hex "Default Router IP address (Gateway)"
+ default 0x0a000001
+
+config EXAMPLES_DHCPD_NETMASK
+ hex "Network Mask"
+ default 0xffffff00
+
endif