diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-07-14 19:37:08 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-07-14 19:37:08 +0000 |
commit | e5642119ee566520a098027746808dd6b9226d99 (patch) | |
tree | bcdb42552005d1498a48ffd634b1c216f01b8f13 /networking/udhcp | |
parent | 1eceb127bd189bf377b6f25dfce04d61e25d89d2 (diff) | |
download | busybox-w32-e5642119ee566520a098027746808dd6b9226d99.tar.gz busybox-w32-e5642119ee566520a098027746808dd6b9226d99.tar.bz2 busybox-w32-e5642119ee566520a098027746808dd6b9226d99.zip |
Patch from Thomas Cameron:
Hello all,
This patch adds more "Help" text to the config system. Almost
all applets now have a help entry. Also, I cleaned up the spacing of
the existing text so that things are consistent. This patch is against
this morning's CVS.
Thomas Cameron
CEI Systems, Inc.
Diffstat (limited to 'networking/udhcp')
-rw-r--r-- | networking/udhcp/Config.in | 30 |
1 files changed, 25 insertions, 5 deletions
diff --git a/networking/udhcp/Config.in b/networking/udhcp/Config.in index 5baaa6a49..a3223de9c 100644 --- a/networking/udhcp/Config.in +++ b/networking/udhcp/Config.in | |||
@@ -9,34 +9,54 @@ config CONFIG_UDHCPD | |||
9 | bool "udhcp Server (udhcpd)" | 9 | bool "udhcp Server (udhcpd)" |
10 | default n | 10 | default n |
11 | help | 11 | help |
12 | Please submit a patch to add help text for this item. | 12 | uDHCPd is a DHCP server geared primarily toward embedded systems, |
13 | while striving to be fully functional and RFC compliant. | ||
14 | |||
15 | See http://udhcp.busybox.net for further details. | ||
13 | 16 | ||
14 | config CONFIG_UDHCPC | 17 | config CONFIG_UDHCPC |
15 | bool "udhcp Client (udhcpc)" | 18 | bool "udhcp Client (udhcpc)" |
16 | default n | 19 | default n |
17 | help | 20 | help |
18 | Please submit a patch to add help text for this item. | 21 | uDHCPc is a DHCP client geared primarily toward embedded systems, |
22 | while striving to be fully functional and RFC compliant. | ||
23 | |||
24 | The udhcp client negotiates a lease with the DHCP server and | ||
25 | notifies a set of scripts when a leases is obtained or lost. | ||
26 | |||
27 | See http://udhcp.busybox.net for further details. | ||
19 | 28 | ||
20 | config CONFIG_DUMPLEASES | 29 | config CONFIG_DUMPLEASES |
21 | bool "Lease display utility (dumpleases)" | 30 | bool "Lease display utility (dumpleases)" |
22 | default n | 31 | default n |
23 | depends on CONFIG_UDHCPD | 32 | depends on CONFIG_UDHCPD |
24 | help | 33 | help |
25 | Please submit a patch to add help text for this item. | 34 | dumpleases displays the leases written out by the udhcpd server. |
35 | Lease times are stored in the file by time remaining in lease, or | ||
36 | by the absolute time that it expires in seconds from epoch. | ||
37 | |||
38 | See http://udhcp.busybox.net for further details. | ||
26 | 39 | ||
27 | config CONFIG_FEATURE_UDHCP_SYSLOG | 40 | config CONFIG_FEATURE_UDHCP_SYSLOG |
28 | bool " Log udhcp messages to syslog (instead of stdout)" | 41 | bool " Log udhcp messages to syslog (instead of stdout)" |
29 | default n | 42 | default n |
30 | depends on CONFIG_UDHCPD || CONFIG_UDHCPC | 43 | depends on CONFIG_UDHCPD || CONFIG_UDHCPC |
31 | help | 44 | help |
32 | Please submit a patch to add help text for this item. | 45 | If selected, udhcpd will log all its messages to syslog, otherwise, |
46 | it will attempt to log them to stdout. | ||
47 | |||
48 | See http://udhcp.busybox.net for further details. | ||
33 | 49 | ||
34 | config CONFIG_FEATURE_UDHCP_DEBUG | 50 | config CONFIG_FEATURE_UDHCP_DEBUG |
35 | bool " Compile udhcp with noisy debugging messages" | 51 | bool " Compile udhcp with noisy debugging messages" |
36 | default n | 52 | default n |
37 | depends on CONFIG_UDHCPD || CONFIG_UDHCPC | 53 | depends on CONFIG_UDHCPD || CONFIG_UDHCPC |
38 | help | 54 | help |
39 | Please submit a patch to add help text for this item. | 55 | If selected, udhcpd will output extra debugging output. If using |
56 | this option, compile uDHCP with "-g", and do not fork the daemon to | ||
57 | the background. | ||
58 | |||
59 | See http://udhcp.busybox.net for further details. | ||
40 | 60 | ||
41 | endmenu | 61 | endmenu |
42 | 62 | ||