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