aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2003-07-05 07:52:35 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2003-07-05 07:52:35 +0000
commit1ca99a3fee6ccd6b8536a20ac01a33428cb67cd1 (patch)
tree87fcfc020d06542f1536aef31d3afb9d0dfb2a04
parent8b3e5450cbe01cc720c446faab2e5da36a4148df (diff)
downloadbusybox-w32-1ca99a3fee6ccd6b8536a20ac01a33428cb67cd1.tar.gz
busybox-w32-1ca99a3fee6ccd6b8536a20ac01a33428cb67cd1.tar.bz2
busybox-w32-1ca99a3fee6ccd6b8536a20ac01a33428cb67cd1.zip
Patch from Kent Robotti adding a bunch of needed docs!
-Erik git-svn-id: svn://busybox.net/trunk/busybox@7038 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--archival/Config.in4
-rw-r--r--coreutils/Config.in3
-rw-r--r--debianutils/Config.in14
-rw-r--r--editors/Config.in8
-rw-r--r--findutils/Config.in8
-rw-r--r--init/Config.in6
-rw-r--r--modutils/Config.in6
7 files changed, 28 insertions, 21 deletions
diff --git a/archival/Config.in b/archival/Config.in
index fddcff462..709eee897 100644
--- a/archival/Config.in
+++ b/archival/Config.in
@@ -206,8 +206,8 @@ config CONFIG_FEATURE_TAR_GNU_EXTENSIONS
206 default y 206 default y
207 depends on CONFIG_TAR 207 depends on CONFIG_TAR
208 help 208 help
209 With this option busybox supports the GNU long filename 209 With this option busybox supports GNU long filenames and
210 and linkanmes. 210 linknames.
211 211
212config CONFIG_FEATURE_UNARCHIVE_TAPE 212config CONFIG_FEATURE_UNARCHIVE_TAPE
213 bool " Enable tape drive support" 213 bool " Enable tape drive support"
diff --git a/coreutils/Config.in b/coreutils/Config.in
index d2c3c6431..232612877 100644
--- a/coreutils/Config.in
+++ b/coreutils/Config.in
@@ -92,7 +92,8 @@ config CONFIG_FEATURE_DATE_ISOFMT
92 default y 92 default y
93 depends on CONFIG_DATE 93 depends on CONFIG_DATE
94 help 94 help
95 Please submit a patch to add help text for this item. 95 Enable option (-I) to output an ISO-8601 compliant
96 date/time string.
96 97
97config CONFIG_DD 98config CONFIG_DD
98 bool "dd" 99 bool "dd"
diff --git a/debianutils/Config.in b/debianutils/Config.in
index 210c43e79..108cc5388 100644
--- a/debianutils/Config.in
+++ b/debianutils/Config.in
@@ -9,25 +9,26 @@ config CONFIG_MKTEMP
9 bool "mktemp" 9 bool "mktemp"
10 default n 10 default n
11 help 11 help
12 Please submit a patch to add help text for this item. 12 mktemp is used to create unique temporary files
13 13
14config CONFIG_READLINK 14config CONFIG_READLINK
15 bool "readlink" 15 bool "readlink"
16 default n 16 default n
17 help 17 help
18 Please submit a patch to add help text for this item. 18 This program reads a symbolic link and returns the name
19 of the file it points to
19 20
20config CONFIG_RUN_PARTS 21config CONFIG_RUN_PARTS
21 bool "run-parts" 22 bool "run-parts"
22 default n 23 default n
23 help 24 help
24 run-parts is an utility designed to run all the scripts in a directory. 25 run-parts is a utility designed to run all the scripts in a directory.
25 26
26 It is useful to set up a directory like cron.daily, where you need to 27 It is useful to set up a directory like cron.daily, where you need to
27 execute all the scripts in that directory. 28 execute all the scripts in that directory.
28 29
29 This implementation of run-parts doesn't accept long options, and 30 This implementation of run-parts does not accept long options, and
30 some features (like report mode) aren't implemented. 31 some features (such as report mode) are not implemented.
31 32
32 Unless you know that run-parts is used in some of your scripts 33 Unless you know that run-parts is used in some of your scripts
33 you can safely say N here. 34 you can safely say N here.
@@ -36,7 +37,8 @@ config CONFIG_WHICH
36 bool "which" 37 bool "which"
37 default n 38 default n
38 help 39 help
39 Please submit a patch to add help text for this item. 40 which is used to find programs in your PATH and
41 print out their pathnames.
40 42
41endmenu 43endmenu
42 44
diff --git a/editors/Config.in b/editors/Config.in
index b7135f393..83aee5a8e 100644
--- a/editors/Config.in
+++ b/editors/Config.in
@@ -28,7 +28,8 @@ config CONFIG_SED
28 bool "sed" 28 bool "sed"
29 default n 29 default n
30 help 30 help
31 Please submit a patch to add help text for this item. 31 sed is used to perform text transformations on a file
32 or input from a pipeline.
32 33
33config CONFIG_FEATURE_SED_EMBEDED_NEWLINE 34config CONFIG_FEATURE_SED_EMBEDED_NEWLINE
34 bool " Embeded newline (EXPERIMENTAL)" 35 bool " Embeded newline (EXPERIMENTAL)"
@@ -43,7 +44,10 @@ config CONFIG_VI
43 bool "vi" 44 bool "vi"
44 default n 45 default n
45 help 46 help
46 Please submit a patch to add help text for this item. 47 'vi' is a text editor. More specifically, it is the One True
48 text editor <grin>. It does, however, have a rather steep
49 learning curve. If you are not already comfortable with 'vi'
50 you may wish to use something else.
47 51
48config CONFIG_FEATURE_VI_COLON 52config CONFIG_FEATURE_VI_COLON
49 bool " Enable \":\" colon commands (no \"ex\" mode)" 53 bool " Enable \":\" colon commands (no \"ex\" mode)"
diff --git a/findutils/Config.in b/findutils/Config.in
index 79358c655..cac11f77b 100644
--- a/findutils/Config.in
+++ b/findutils/Config.in
@@ -9,7 +9,7 @@ config CONFIG_FIND
9 bool "find" 9 bool "find"
10 default n 10 default n
11 help 11 help
12 Please submit a patch to add help text for this item. 12 find is used to search your system to find specified files.
13 13
14config CONFIG_FEATURE_FIND_MTIME 14config CONFIG_FEATURE_FIND_MTIME
15 bool " Enable modified time matching (-mtime) option" 15 bool " Enable modified time matching (-mtime) option"
@@ -58,7 +58,7 @@ config CONFIG_GREP
58 bool "grep" 58 bool "grep"
59 default n 59 default n
60 help 60 help
61 Please submit a patch to add help text for this item. 61 grep is used to search files for a specified pattern.
62 62
63config CONFIG_FEATURE_GREP_EGREP_ALIAS 63config CONFIG_FEATURE_GREP_EGREP_ALIAS
64 bool " Support extended regular expressions (egrep & grep -E)" 64 bool " Support extended regular expressions (egrep & grep -E)"
@@ -87,8 +87,8 @@ config CONFIG_XARGS
87 bool "xargs" 87 bool "xargs"
88 default n 88 default n
89 help 89 help
90 Please submit a patch to add help text for this item. 90 xargs is used to execute a specified command on
91 91 every item from standard input.
92 92
93endmenu 93endmenu
94 94
diff --git a/init/Config.in b/init/Config.in
index a478e07c8..0316399e6 100644
--- a/init/Config.in
+++ b/init/Config.in
@@ -9,21 +9,21 @@ config CONFIG_INIT
9 bool "init" 9 bool "init"
10 default n 10 default n
11 help 11 help
12 Please submit a patch to add help text for this item. 12 init is the first program run when the system boots.
13 13
14config CONFIG_FEATURE_USE_INITTAB 14config CONFIG_FEATURE_USE_INITTAB
15 bool " Support reading an inittab file?" 15 bool " Support reading an inittab file?"
16 default y 16 default y
17 depends on CONFIG_INIT 17 depends on CONFIG_INIT
18 help 18 help
19 Please submit a patch to add help text for this item. 19 Allow init to read an inittab file when the system boot.
20 20
21config CONFIG_FEATURE_INITRD 21config CONFIG_FEATURE_INITRD
22 bool " Support running init from within an initrd?" 22 bool " Support running init from within an initrd?"
23 default y 23 default y
24 depends on CONFIG_INIT 24 depends on CONFIG_INIT
25 help 25 help
26 Please submit a patch to add help text for this item. 26 Allow init to be called from an initrd as linuxrc.
27 27
28config CONFIG_FEATURE_INIT_COREDUMPS 28config CONFIG_FEATURE_INIT_COREDUMPS
29 bool " Support dumping core for child processes (debugging only)?" 29 bool " Support dumping core for child processes (debugging only)?"
diff --git a/modutils/Config.in b/modutils/Config.in
index ae62d7fcd..a576e4bbd 100644
--- a/modutils/Config.in
+++ b/modutils/Config.in
@@ -9,7 +9,7 @@ config CONFIG_INSMOD
9 bool "insmod" 9 bool "insmod"
10 default n 10 default n
11 help 11 help
12 Please submit a patch to add help text for this item. 12 insmod is used to load specified modules in the running kernel.
13 13
14config CONFIG_FEATURE_OLD_MODULE_INTERFACE 14config CONFIG_FEATURE_OLD_MODULE_INTERFACE
15 bool " Support older (pre 2.1) Linux kernels" 15 bool " Support older (pre 2.1) Linux kernels"
@@ -83,7 +83,7 @@ config CONFIG_LSMOD
83 bool "lsmod" 83 bool "lsmod"
84 default n 84 default n
85 help 85 help
86 Please submit a patch to add help text for this item. 86 lsmod is used to display a list of loaded modules.
87 87
88config CONFIG_FEATURE_QUERY_MODULE_INTERFACE 88config CONFIG_FEATURE_QUERY_MODULE_INTERFACE
89 bool " Support lsmod query_module interface (add 638 bytes)" 89 bool " Support lsmod query_module interface (add 638 bytes)"
@@ -102,7 +102,7 @@ config CONFIG_RMMOD
102 bool "rmmod" 102 bool "rmmod"
103 default n 103 default n
104 help 104 help
105 Please submit a patch to add help text for this item. 105 rmmod is used to unload specified modules from the kernel.
106 106
107config CONFIG_FEATURE_CHECK_TAINTED_MODULE 107config CONFIG_FEATURE_CHECK_TAINTED_MODULE
108 bool "Support tainted module checking with new kernels" 108 bool "Support tainted module checking with new kernels"