aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2003-07-14 19:18:43 +0000
committerEric Andersen <andersen@codepoet.org>2003-07-14 19:18:43 +0000
commitfb0c6af286013929a89a2ba37f1d74cc05cdd5e7 (patch)
tree5ccaf4945a1bc5cba82209e9dfa8d59f56382134
parent9edcabdc340e858227017b023a724c7e7e9f67d8 (diff)
downloadbusybox-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.
-rw-r--r--findutils/Config.in18
-rw-r--r--init/Config.in27
2 files changed, 31 insertions, 14 deletions
diff --git a/findutils/Config.in b/findutils/Config.in
index cac11f77b..e904587e4 100644
--- a/findutils/Config.in
+++ b/findutils/Config.in
@@ -16,28 +16,31 @@ config CONFIG_FEATURE_FIND_MTIME
16 default y 16 default y
17 depends on CONFIG_FIND 17 depends on CONFIG_FIND
18 help 18 help
19 Please submit a patch to add help text for this item. 19 Allow searching based on the modification time of
20 files.
20 21
21config CONFIG_FEATURE_FIND_PERM 22config CONFIG_FEATURE_FIND_PERM
22 bool " Enable permissions matching (-perm) option" 23 bool " Enable permissions matching (-perm) option"
23 default y 24 default y
24 depends on CONFIG_FIND 25 depends on CONFIG_FIND
25 help 26 help
26 Please submit a patch to add help text for this item. 27 Enable searching based on file permissions.
27 28
28config CONFIG_FEATURE_FIND_TYPE 29config CONFIG_FEATURE_FIND_TYPE
29 bool " Enable filetype matching (-type) option" 30 bool " Enable filetype matching (-type) option"
30 default y 31 default y
31 depends on CONFIG_FIND 32 depends on CONFIG_FIND
32 help 33 help
33 Please submit a patch to add help text for this item. 34 Enable searching based on file type (file,
35 directory, socket, device, etc.).
34 36
35config CONFIG_FEATURE_FIND_XDEV 37config CONFIG_FEATURE_FIND_XDEV
36 bool " Enable stay in filesystem (-xdev) option" 38 bool " Enable stay in filesystem (-xdev) option"
37 default y 39 default y
38 depends on CONFIG_FIND 40 depends on CONFIG_FIND
39 help 41 help
40 Please submit a patch to add help text for this item. 42 This option will restrict find to a single
43 filesystem.
41 44
42config CONFIG_FEATURE_FIND_NEWER 45config CONFIG_FEATURE_FIND_NEWER
43 bool " Enable -newer option for comparing file mtimes" 46 bool " Enable -newer option for comparing file mtimes"
@@ -65,7 +68,9 @@ config CONFIG_FEATURE_GREP_EGREP_ALIAS
65 default y 68 default y
66 depends on CONFIG_GREP 69 depends on CONFIG_GREP
67 help 70 help
68 Please submit a patch to add help text for this item. 71 Enabled support for extended regular expressions. Extended
72 regular expressions allow for alternation (foo|bar), grouping,
73 and various repetition operators.
69 74
70config CONFIG_FEATURE_GREP_FGREP_ALIAS 75config CONFIG_FEATURE_GREP_FGREP_ALIAS
71 bool " Alias fgrep to grep -f" 76 bool " Alias fgrep to grep -f"
@@ -81,7 +86,8 @@ config CONFIG_FEATURE_GREP_CONTEXT
81 default y 86 default y
82 depends on CONFIG_GREP 87 depends on CONFIG_GREP
83 help 88 help
84 Please submit a patch to add help text for this item. 89 Enable match context in results. This will display a number
90 of lines preceding and/or trailing matches.
85 91
86config CONFIG_XARGS 92config CONFIG_XARGS
87 bool "xargs" 93 bool "xargs"
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
35config CONFIG_FEATURE_EXTRA_QUIET 38config 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
43config CONFIG_HALT 47config 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
50config CONFIG_POWEROFF 54config 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
57config CONFIG_REBOOT 61config 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
64config CONFIG_MINIT 68config 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
70config CONFIG_PIDFILEHACK 77config 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
91config CONFIG_MESG 100config 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
97endmenu 108endmenu
98 109