Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 1 | # |
| 2 | # For a description of the syntax of this configuration file, |
| 3 | # see scripts/kbuild/config-language.txt. |
| 4 | # |
| 5 | |
| 6 | menu "udhcp Server/Client" |
| 7 | |
| 8 | config CONFIG_UDHCPD |
| 9 | bool "udhcp Server (udhcpd)" |
| 10 | default n |
| 11 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 12 | uDHCPd is a DHCP server geared primarily toward embedded systems, |
| 13 | while striving to be fully functional and RFC compliant. |
| 14 | |
| 15 | See http://udhcp.busybox.net for further details. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 16 | |
| 17 | config CONFIG_UDHCPC |
| 18 | bool "udhcp Client (udhcpc)" |
| 19 | default n |
| 20 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 21 | uDHCPc is a DHCP client geared primarily toward embedded systems, |
| 22 | while striving to be fully functional and RFC compliant. |
| 23 | |
| 24 | The udhcp client negotiates a lease with the DHCP server and |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 25 | notifies a set of scripts when a lease is obtained or lost. |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 26 | |
| 27 | See http://udhcp.busybox.net for further details. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 28 | |
| 29 | config CONFIG_DUMPLEASES |
| 30 | bool "Lease display utility (dumpleases)" |
| 31 | default n |
| 32 | depends on CONFIG_UDHCPD |
| 33 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 34 | dumpleases displays the leases written out by the udhcpd server. |
| 35 | Lease times are stored in the file by time remaining in lease, or |
| 36 | by the absolute time that it expires in seconds from epoch. |
| 37 | |
| 38 | See http://udhcp.busybox.net for further details. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 39 | |
| 40 | config CONFIG_FEATURE_UDHCP_SYSLOG |
| 41 | bool " Log udhcp messages to syslog (instead of stdout)" |
| 42 | default n |
| 43 | depends on CONFIG_UDHCPD || CONFIG_UDHCPC |
| 44 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 45 | If selected, udhcpd will log all its messages to syslog, otherwise, |
| 46 | it will attempt to log them to stdout. |
| 47 | |
| 48 | See http://udhcp.busybox.net for further details. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 49 | |
| 50 | config CONFIG_FEATURE_UDHCP_DEBUG |
| 51 | bool " Compile udhcp with noisy debugging messages" |
| 52 | default n |
| 53 | depends on CONFIG_UDHCPD || CONFIG_UDHCPC |
| 54 | help |
Eric Andersen | e564211 | 2003-07-14 19:37:08 +0000 | [diff] [blame] | 55 | If selected, udhcpd will output extra debugging output. If using |
| 56 | this option, compile uDHCP with "-g", and do not fork the daemon to |
| 57 | the background. |
| 58 | |
| 59 | See http://udhcp.busybox.net for further details. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 60 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 61 | endmenu |
| 62 | |