2002-12-05 14:11:41 +05:30
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
# see scripts/kbuild/config-language.txt.
|
|
|
|
#
|
|
|
|
|
|
|
|
menu "Editors"
|
|
|
|
|
2010-06-08 15:45:11 +05:30
|
|
|
INSERT
|
|
|
|
|
2006-10-05 15:47:08 +05:30
|
|
|
config AWK
|
2002-12-05 14:11:41 +05:30
|
|
|
bool "awk"
|
2010-06-06 07:44:28 +05:30
|
|
|
default y
|
2002-12-05 14:11:41 +05:30
|
|
|
help
|
2008-07-22 23:57:53 +05:30
|
|
|
Awk is used as a pattern scanning and processing language. This is
|
2003-07-15 01:07:08 +05:30
|
|
|
the BusyBox implementation of that programming language.
|
2002-12-05 14:11:41 +05:30
|
|
|
|
2008-10-24 16:19:49 +05:30
|
|
|
config FEATURE_AWK_LIBM
|
2006-04-14 04:52:16 +05:30
|
|
|
bool "Enable math functions (requires libm)"
|
2010-06-06 07:44:28 +05:30
|
|
|
default y
|
2006-10-05 15:47:08 +05:30
|
|
|
depends on AWK
|
2002-12-05 14:11:41 +05:30
|
|
|
help
|
2003-07-15 01:07:08 +05:30
|
|
|
Enable math functions of the Awk programming language.
|
|
|
|
NOTE: This will require libm to be present for linking.
|
2002-12-05 14:11:41 +05:30
|
|
|
|
2007-06-12 13:42:33 +05:30
|
|
|
config CMP
|
|
|
|
bool "cmp"
|
2010-06-06 07:44:28 +05:30
|
|
|
default y
|
2007-06-12 13:42:33 +05:30
|
|
|
help
|
|
|
|
cmp is used to compare two files and returns the result
|
|
|
|
to standard output.
|
|
|
|
|
|
|
|
config DIFF
|
|
|
|
bool "diff"
|
2010-06-06 07:44:28 +05:30
|
|
|
default y
|
2007-06-12 13:42:33 +05:30
|
|
|
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-19 02:10:02 +05:30
|
|
|
config FEATURE_DIFF_LONG_OPTIONS
|
|
|
|
bool "Enable long options"
|
2010-06-06 07:44:28 +05:30
|
|
|
default y
|
2010-01-19 02:10:02 +05:30
|
|
|
depends on DIFF && LONG_OPTS
|
|
|
|
help
|
|
|
|
Enable use of long options.
|
|
|
|
|
2007-06-12 13:42:33 +05:30
|
|
|
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 15:47:08 +05:30
|
|
|
config ED
|
2006-05-05 02:26:43 +05:30
|
|
|
bool "ed"
|
2010-06-06 07:44:28 +05:30
|
|
|
default y
|
2006-05-05 02:26:43 +05:30
|
|
|
help
|
|
|
|
The original 1970's Unix text editor, from the days of teletypes.
|
2008-07-22 23:57:53 +05:30
|
|
|
Small, simple, evil. Part of SUSv3. If you're not already using
|
2006-05-05 02:26:43 +05:30
|
|
|
this, you don't need it.
|
|
|
|
|
2006-10-05 15:47:08 +05:30
|
|
|
config SED
|
2002-12-05 14:11:41 +05:30
|
|
|
bool "sed"
|
2010-06-06 07:44:28 +05:30
|
|
|
default y
|
2002-12-05 14:11:41 +05:30
|
|
|
help
|
2003-07-05 13:22:35 +05:30
|
|
|
sed is used to perform text transformations on a file
|
|
|
|
or input from a pipeline.
|
2002-12-05 14:11:41 +05:30
|
|
|
|
2006-12-19 05:59:22 +05:30
|
|
|
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 14:11:41 +05:30
|
|
|
|
2006-12-19 05:59:22 +05:30
|
|
|
endmenu
|