blob: 01b2902ee9b63e87f69c2d9eaaf994f373adc3cf [file] [log] [blame]
Mike Frysinger7031f622006-05-08 03:20:50 +00001#
2# For a description of the syntax of this configuration file,
3# see scripts/kbuild/config-language.txt.
4#
5
Rob Landley67d49432006-06-22 18:48:34 +00006config CONFIG_APP_UDHCPD
Mike Frysinger7031f622006-05-08 03:20:50 +00007 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
Mike Frysinger91a33902006-07-24 07:35:52 +000015config CONFIG_APP_DUMPLEASES
16 bool "Lease display utility (dumpleases)"
17 default n
18 depends on CONFIG_APP_UDHCPD
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
Rob Landley67d49432006-06-22 18:48:34 +000026config CONFIG_APP_UDHCPC
Mike Frysinger7031f622006-05-08 03:20:50 +000027 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
Mike Frysinger7031f622006-05-08 03:20:50 +000038config CONFIG_FEATURE_UDHCP_SYSLOG
Mike Frysinger91a33902006-07-24 07:35:52 +000039 bool "Log udhcp messages to syslog (instead of stdout)"
Mike Frysinger7031f622006-05-08 03:20:50 +000040 default n
Rob Landley67d49432006-06-22 18:48:34 +000041 depends on CONFIG_APP_UDHCPD || CONFIG_APP_UDHCPC
Mike Frysinger7031f622006-05-08 03:20:50 +000042 help
43 If selected, udhcpd will log all its messages to syslog, otherwise,
44 it will attempt to log them to stdout.
45
46 See http://udhcp.busybox.net for further details.
47
48config CONFIG_FEATURE_UDHCP_DEBUG
Mike Frysinger91a33902006-07-24 07:35:52 +000049 bool "Compile udhcp with noisy debugging messages"
Mike Frysinger7031f622006-05-08 03:20:50 +000050 default n
Rob Landley67d49432006-06-22 18:48:34 +000051 depends on CONFIG_APP_UDHCPD || CONFIG_APP_UDHCPC
Mike Frysinger7031f622006-05-08 03:20:50 +000052 help
53 If selected, udhcpd will output extra debugging output. If using
54 this option, compile uDHCP with "-g", and do not fork the daemon to
55 the background.
56
57 See http://udhcp.busybox.net for further details.