Upgrade busybox to 1.7.2
[openwrt-10.03/.git] / package / busybox / config / 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 BUSYBOX_CONFIG_APP_UDHCPD
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
15 config BUSYBOX_CONFIG_APP_DHCPRELAY
16         bool "dhcprelay"
17         default n
18         depends on BUSYBOX_CONFIG_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
24 config BUSYBOX_CONFIG_APP_DUMPLEASES
25         bool "Lease display utility (dumpleases)"
26         default n
27         depends on BUSYBOX_CONFIG_APP_UDHCPD
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
35 config BUSYBOX_CONFIG_FEATURE_UDHCPD_WRITE_LEASES_EARLY
36         bool "Rewrite the lease file at every new acknowledge"
37         default n
38         depends on BUSYBOX_CONFIG_APP_UDHCPD
39         help
40           If selected, udhcpd will write a new file with leases every
41           time a new lease has been accepted, thus eleminating the need
42           to send SIGUSR1 for the initial writing, or updating. Any timed
43           rewriting remains undisturbed
44
45 config BUSYBOX_CONFIG_APP_UDHCPC
46         bool "udhcp Client (udhcpc)"
47         default y
48         help
49           uDHCPc is a DHCP client geared primarily toward embedded systems,
50           while striving to be fully functional and RFC compliant.
51
52           The udhcp client negotiates a lease with the DHCP server and
53           notifies a set of scripts when a lease is obtained or lost.
54
55           See http://udhcp.busybox.net for further details.
56
57 config BUSYBOX_CONFIG_FEATURE_UDHCP_DEBUG
58         bool "Compile udhcp with noisy debugging messages"
59         default n
60         depends on BUSYBOX_CONFIG_APP_UDHCPD || BUSYBOX_CONFIG_APP_UDHCPC
61         help
62           If selected, udhcpd will output extra debugging output.  If using
63           this option, compile uDHCP with "-g", and do not fork the daemon to
64           the background.
65
66           See http://udhcp.busybox.net for further details.
67
68 config BUSYBOX_CONFIG_FEATURE_RFC3397
69         bool "Support for RFC3397 domain search (experimental)"
70         default y
71         depends on BUSYBOX_CONFIG_APP_UDHCPD || BUSYBOX_CONFIG_APP_UDHCPC
72         help
73           If selected, both client and server will support passing of domain
74           search lists via option 119, specified in RFC3397.