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 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame^] | 6 | config APP_UDHCPD |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 7 | bool "udhcp Server (udhcpd)" |
| 8 | default n |
| 9 | help |
| 10 | uDHCPd is a DHCP server geared primarily toward embedded systems, |
| 11 | while striving to be fully functional and RFC compliant. |
| 12 | |
| 13 | See http://udhcp.busybox.net for further details. |
| 14 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame^] | 15 | config APP_DUMPLEASES |
Mike Frysinger | 91a3390 | 2006-07-24 07:35:52 +0000 | [diff] [blame] | 16 | bool "Lease display utility (dumpleases)" |
| 17 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame^] | 18 | depends on APP_UDHCPD |
Mike Frysinger | 91a3390 | 2006-07-24 07:35:52 +0000 | [diff] [blame] | 19 | help |
| 20 | dumpleases displays the leases written out by the udhcpd server. |
| 21 | Lease times are stored in the file by time remaining in lease, or |
| 22 | by the absolute time that it expires in seconds from epoch. |
| 23 | |
| 24 | See http://udhcp.busybox.net for further details. |
| 25 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame^] | 26 | config APP_UDHCPC |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 27 | bool "udhcp Client (udhcpc)" |
| 28 | default n |
| 29 | help |
| 30 | uDHCPc is a DHCP client geared primarily toward embedded systems, |
| 31 | while striving to be fully functional and RFC compliant. |
| 32 | |
| 33 | The udhcp client negotiates a lease with the DHCP server and |
| 34 | notifies a set of scripts when a lease is obtained or lost. |
| 35 | |
| 36 | See http://udhcp.busybox.net for further details. |
| 37 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame^] | 38 | config FEATURE_UDHCP_SYSLOG |
Denis Vlasenko | 239369b | 2006-09-07 17:05:44 +0000 | [diff] [blame] | 39 | bool "Log udhcp messages to syslog" |
| 40 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame^] | 41 | depends on APP_UDHCPD || APP_UDHCPC |
| 42 | select FEATURE_SYSLOG |
Denis Vlasenko | 239369b | 2006-09-07 17:05:44 +0000 | [diff] [blame] | 43 | help |
| 44 | If not daemonized, udhcpd prints its messages to stdout/stderr. |
| 45 | If this option is selected, it will also log them to syslog. |
| 46 | |
| 47 | See http://udhcp.busybox.net for further details. |
| 48 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame^] | 49 | config FEATURE_UDHCP_DEBUG |
Mike Frysinger | 91a3390 | 2006-07-24 07:35:52 +0000 | [diff] [blame] | 50 | bool "Compile udhcp with noisy debugging messages" |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 51 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame^] | 52 | depends on APP_UDHCPD || APP_UDHCPC |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 53 | help |
| 54 | If selected, udhcpd will output extra debugging output. If using |
| 55 | this option, compile uDHCP with "-g", and do not fork the daemon to |
| 56 | the background. |
| 57 | |
| 58 | See http://udhcp.busybox.net for further details. |