Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 1 | # |
| 2 | # For a description of the syntax of this configuration file, |
| 3 | # see scripts/kbuild/config-language.txt. |
| 4 | # |
| 5 | |
Rob Landley | 67d4943 | 2006-06-22 18:48:34 +0000 | [diff] [blame] | 6 | config CONFIG_APP_UDHCPD |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 7 | bool "udhcp Server (udhcpd)" |
| 8 | default n |
Denis Vlasenko | 049d6b8 | 2006-09-07 06:02:39 +0000 | [diff] [blame] | 9 | select CONFIG_FEATURE_SYSLOG |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 10 | help |
| 11 | uDHCPd is a DHCP server geared primarily toward embedded systems, |
| 12 | while striving to be fully functional and RFC compliant. |
| 13 | |
| 14 | See http://udhcp.busybox.net for further details. |
| 15 | |
Mike Frysinger | 91a3390 | 2006-07-24 07:35:52 +0000 | [diff] [blame] | 16 | config CONFIG_APP_DUMPLEASES |
| 17 | bool "Lease display utility (dumpleases)" |
| 18 | default n |
| 19 | depends on CONFIG_APP_UDHCPD |
| 20 | help |
| 21 | dumpleases displays the leases written out by the udhcpd server. |
| 22 | Lease times are stored in the file by time remaining in lease, or |
| 23 | by the absolute time that it expires in seconds from epoch. |
| 24 | |
| 25 | See http://udhcp.busybox.net for further details. |
| 26 | |
Rob Landley | 67d4943 | 2006-06-22 18:48:34 +0000 | [diff] [blame] | 27 | config CONFIG_APP_UDHCPC |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 28 | bool "udhcp Client (udhcpc)" |
| 29 | default n |
Denis Vlasenko | 049d6b8 | 2006-09-07 06:02:39 +0000 | [diff] [blame] | 30 | select CONFIG_FEATURE_SYSLOG |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 31 | help |
| 32 | uDHCPc is a DHCP client geared primarily toward embedded systems, |
| 33 | while striving to be fully functional and RFC compliant. |
| 34 | |
| 35 | The udhcp client negotiates a lease with the DHCP server and |
| 36 | notifies a set of scripts when a lease is obtained or lost. |
| 37 | |
| 38 | See http://udhcp.busybox.net for further details. |
| 39 | |
Denis Vlasenko | 239369b | 2006-09-07 17:05:44 +0000 | [diff] [blame^] | 40 | config CONFIG_FEATURE_UDHCP_SYSLOG |
| 41 | bool "Log udhcp messages to syslog" |
| 42 | default n |
| 43 | depends on CONFIG_APP_UDHCPD || CONFIG_APP_UDHCPC |
| 44 | help |
| 45 | If not daemonized, udhcpd prints its messages to stdout/stderr. |
| 46 | If this option is selected, it will also log them to syslog. |
| 47 | |
| 48 | See http://udhcp.busybox.net for further details. |
| 49 | |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 50 | config CONFIG_FEATURE_UDHCP_DEBUG |
Mike Frysinger | 91a3390 | 2006-07-24 07:35:52 +0000 | [diff] [blame] | 51 | bool "Compile udhcp with noisy debugging messages" |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 52 | default n |
Rob Landley | 67d4943 | 2006-06-22 18:48:34 +0000 | [diff] [blame] | 53 | depends on CONFIG_APP_UDHCPD || CONFIG_APP_UDHCPC |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 54 | help |
| 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. |