2002-12-05 08:41:41 +00:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
# see scripts/kbuild/config-language.txt.
|
|
|
|
#
|
|
|
|
|
|
|
|
menu "Editors"
|
|
|
|
|
2010-06-08 10:15:11 +00:00
|
|
|
INSERT
|
|
|
|
|
2006-10-05 10:17:08 +00:00
|
|
|
config AWK
|
2002-12-05 08:41:41 +00:00
|
|
|
bool "awk"
|
2010-06-06 02:14:28 +00:00
|
|
|
default y
|
2002-12-05 08:41:41 +00:00
|
|
|
help
|
2008-07-22 18:27:53 +00:00
|
|
|
Awk is used as a pattern scanning and processing language. This is
|
2003-07-14 19:37:08 +00:00
|
|
|
the BusyBox implementation of that programming language.
|
2002-12-05 08:41:41 +00:00
|
|
|
|
2008-10-24 10:49:49 +00:00
|
|
|
config FEATURE_AWK_LIBM
|
2006-04-13 23:22:16 +00:00
|
|
|
bool "Enable math functions (requires libm)"
|
2010-06-06 02:14:28 +00:00
|
|
|
default y
|
2006-10-05 10:17:08 +00:00
|
|
|
depends on AWK
|
2002-12-05 08:41:41 +00:00
|
|
|
help
|
2003-07-14 19:37:08 +00:00
|
|
|
Enable math functions of the Awk programming language.
|
|
|
|
NOTE: This will require libm to be present for linking.
|
2002-12-05 08:41:41 +00:00
|
|
|
|
2007-06-12 08:12:33 +00:00
|
|
|
config CMP
|
|
|
|
bool "cmp"
|
2010-06-06 02:14:28 +00:00
|
|
|
default y
|
2007-06-12 08:12:33 +00:00
|
|
|
help
|
|
|
|
cmp is used to compare two files and returns the result
|
|
|
|
to standard output.
|
|
|
|
|
|
|
|
config DIFF
|
|
|
|
bool "diff"
|
2010-06-06 02:14:28 +00:00
|
|
|
default y
|
2007-06-12 08:12:33 +00:00
|
|
|
help
|
|
|
|
diff compares two files or directories and outputs the
|
|
|
|
differences between them in a form that can be given to
|
|
|
|
the patch command.
|
|
|
|
|
2010-01-18 20:40:02 +00:00
|
|
|
config FEATURE_DIFF_LONG_OPTIONS
|
|
|
|
bool "Enable long options"
|
2010-06-06 02:14:28 +00:00
|
|
|
default y
|
2010-01-18 20:40:02 +00:00
|
|
|
depends on DIFF && LONG_OPTS
|
|
|
|
help
|
|
|
|
Enable use of long options.
|
|
|
|
|
2007-06-12 08:12:33 +00:00
|
|
|
config FEATURE_DIFF_DIR
|
|
|
|
bool "Enable directory support"
|
|
|
|
default y
|
|
|
|
depends on DIFF
|
|
|
|
help
|
|
|
|
This option enables support for directory and subdirectory
|
|
|
|
comparison.
|
|
|
|
|
2006-10-05 10:17:08 +00:00
|
|
|
config ED
|
2006-05-04 20:56:43 +00:00
|
|
|
bool "ed"
|
2010-06-06 02:14:28 +00:00
|
|
|
default y
|
2006-05-04 20:56:43 +00:00
|
|
|
help
|
|
|
|
The original 1970's Unix text editor, from the days of teletypes.
|
2008-07-22 18:27:53 +00:00
|
|
|
Small, simple, evil. Part of SUSv3. If you're not already using
|
2006-05-04 20:56:43 +00:00
|
|
|
this, you don't need it.
|
|
|
|
|
2006-10-05 10:17:08 +00:00
|
|
|
config SED
|
2002-12-05 08:41:41 +00:00
|
|
|
bool "sed"
|
2010-06-06 02:14:28 +00:00
|
|
|
default y
|
2002-12-05 08:41:41 +00:00
|
|
|
help
|
2003-07-05 07:52:35 +00:00
|
|
|
sed is used to perform text transformations on a file
|
|
|
|
or input from a pipeline.
|
2002-12-05 08:41:41 +00:00
|
|
|
|
2006-12-19 00:29:22 +00:00
|
|
|
config FEATURE_ALLOW_EXEC
|
|
|
|
bool "Allow vi and awk to execute shell commands"
|
|
|
|
default y
|
|
|
|
depends on VI || AWK
|
|
|
|
help
|
|
|
|
Enables vi and awk features which allows user to execute
|
|
|
|
shell commands (using system() C call).
|
2002-12-05 08:41:41 +00:00
|
|
|
|
2006-12-19 00:29:22 +00:00
|
|
|
endmenu
|