Add CONFIG_FEATURE_SYSLOG which controls whether
[oweals/busybox.git] / networking / udhcp / Config.in
1 #
2 # For a description of the syntax of this configuration file,
3 # see scripts/kbuild/config-language.txt.
4 #
5
6 config CONFIG_APP_UDHCPD
7         bool "udhcp Server (udhcpd)"
8         default n
9         select CONFIG_FEATURE_SYSLOG
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
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
27 config CONFIG_APP_UDHCPC
28         bool "udhcp Client (udhcpc)"
29         default n
30         select CONFIG_FEATURE_SYSLOG
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
40 config CONFIG_FEATURE_UDHCP_DEBUG
41         bool "Compile udhcp with noisy debugging messages"
42         default n
43         depends on CONFIG_APP_UDHCPD || CONFIG_APP_UDHCPC
44         help
45           If selected, udhcpd will output extra debugging output.  If using
46           this option, compile uDHCP with "-g", and do not fork the daemon to
47           the background.
48
49           See http://udhcp.busybox.net for further details.