diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-07-14 19:18:43 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-07-14 19:18:43 +0000 |
commit | fb0c6af286013929a89a2ba37f1d74cc05cdd5e7 (patch) | |
tree | 5ccaf4945a1bc5cba82209e9dfa8d59f56382134 /init | |
parent | 9edcabdc340e858227017b023a724c7e7e9f67d8 (diff) | |
download | busybox-w32-fb0c6af286013929a89a2ba37f1d74cc05cdd5e7.tar.gz busybox-w32-fb0c6af286013929a89a2ba37f1d74cc05cdd5e7.tar.bz2 busybox-w32-fb0c6af286013929a89a2ba37f1d74cc05cdd5e7.zip |
Patch from Lars Kellogg-Stedman:
The attached two patches add config documentation to init/Config.in and
fileutils/Config.in.
Diffstat (limited to 'init')
-rw-r--r-- | init/Config.in | 27 |
1 files changed, 19 insertions, 8 deletions
diff --git a/init/Config.in b/init/Config.in index 0316399e6..d56cd5540 100644 --- a/init/Config.in +++ b/init/Config.in | |||
@@ -30,14 +30,18 @@ config CONFIG_FEATURE_INIT_COREDUMPS | |||
30 | default y | 30 | default y |
31 | depends on CONFIG_INIT | 31 | depends on CONFIG_INIT |
32 | help | 32 | help |
33 | Please submit a patch to add help text for this item. | 33 | If this option is enabled and the file /.init_enable_core |
34 | exists, then init will call setrlimit() to allow unlimited | ||
35 | core file sizes. If this option is disabled, processes | ||
36 | will not generate any core files. | ||
34 | 37 | ||
35 | config CONFIG_FEATURE_EXTRA_QUIET | 38 | config CONFIG_FEATURE_EXTRA_QUIET |
36 | bool " Should init be _extra_ quiet on boot?" | 39 | bool " Should init be _extra_ quiet on boot?" |
37 | default y | 40 | default y |
38 | depends on CONFIG_INIT | 41 | depends on CONFIG_INIT |
39 | help | 42 | help |
40 | Please submit a patch to add help text for this item. | 43 | Prevent init from logging some messages to the console |
44 | during boot. | ||
41 | 45 | ||
42 | # Some apps that are meaningless without BusyBox running as init | 46 | # Some apps that are meaningless without BusyBox running as init |
43 | config CONFIG_HALT | 47 | config CONFIG_HALT |
@@ -45,27 +49,30 @@ config CONFIG_HALT | |||
45 | default y | 49 | default y |
46 | depends on CONFIG_INIT | 50 | depends on CONFIG_INIT |
47 | help | 51 | help |
48 | Please submit a patch to add help text for this item. | 52 | Stop all processes. |
49 | 53 | ||
50 | config CONFIG_POWEROFF | 54 | config CONFIG_POWEROFF |
51 | bool "poweroff" | 55 | bool "poweroff" |
52 | default y | 56 | default y |
53 | depends on CONFIG_INIT | 57 | depends on CONFIG_INIT |
54 | help | 58 | help |
55 | Please submit a patch to add help text for this item. | 59 | Stop all processes and (try to) power off the system. |
56 | 60 | ||
57 | config CONFIG_REBOOT | 61 | config CONFIG_REBOOT |
58 | bool "reboot" | 62 | bool "reboot" |
59 | default y | 63 | default y |
60 | depends on CONFIG_INIT | 64 | depends on CONFIG_INIT |
61 | help | 65 | help |
62 | Please submit a patch to add help text for this item. | 66 | Stop all processes and reboot the system. |
63 | 67 | ||
64 | config CONFIG_MINIT | 68 | config CONFIG_MINIT |
65 | bool "minit" | 69 | bool "minit" |
66 | default n | 70 | default n |
67 | help | 71 | help |
68 | Minimal init, based on minit v0.9.1 | 72 | Minimal init, based on minit v0.9.1. This is a simple |
73 | init replacement that handles starting/stopping services, | ||
74 | and service dependencies. See http://www.fefe.de/minit/ | ||
75 | for additional information. | ||
69 | 76 | ||
70 | config CONFIG_PIDFILEHACK | 77 | config CONFIG_PIDFILEHACK |
71 | bool "pidfilehack" | 78 | bool "pidfilehack" |
@@ -86,13 +93,17 @@ config CONFIG_START_STOP_DAEMON | |||
86 | bool "start-stop-daemon" | 93 | bool "start-stop-daemon" |
87 | default y | 94 | default y |
88 | help | 95 | help |
89 | Please submit a patch to add help text for this item. | 96 | start-stop-daemon is used to control the creation and |
97 | termination of system-level processes, usually the ones | ||
98 | started during the startup of the system. | ||
90 | 99 | ||
91 | config CONFIG_MESG | 100 | config CONFIG_MESG |
92 | bool "mesg" | 101 | bool "mesg" |
93 | default y | 102 | default y |
94 | help | 103 | help |
95 | Please submit a patch to add help text for this item. | 104 | Mesg controls the access to your terminal by others. It |
105 | is typically used to allow or disallow other users to write | ||
106 | to your terminal | ||
96 | 107 | ||
97 | endmenu | 108 | endmenu |
98 | 109 | ||