source: MondoRescue/branches/3.2/mindi-busybox/editors/Config.src@ 3232

Last change on this file since 3232 was 3232, checked in by Bruno Cornec, 10 years ago
  • Update mindi-busybox to 1.21.1
File size: 1.7 KB
RevLine 
[2725]1#
2# For a description of the syntax of this configuration file,
3# see scripts/kbuild/config-language.txt.
4#
5
6menu "Editors"
7
8INSERT
9
10config AWK
11 bool "awk"
12 default y
13 help
14 Awk is used as a pattern scanning and processing language. This is
15 the BusyBox implementation of that programming language.
16
17config FEATURE_AWK_LIBM
18 bool "Enable math functions (requires libm)"
19 default y
20 depends on AWK
21 help
22 Enable math functions of the Awk programming language.
23 NOTE: This will require libm to be present for linking.
24
25config CMP
26 bool "cmp"
27 default y
28 help
29 cmp is used to compare two files and returns the result
30 to standard output.
31
32config DIFF
33 bool "diff"
34 default y
35 help
36 diff compares two files or directories and outputs the
37 differences between them in a form that can be given to
38 the patch command.
39
40config FEATURE_DIFF_LONG_OPTIONS
41 bool "Enable long options"
42 default y
43 depends on DIFF && LONG_OPTS
44 help
45 Enable use of long options.
46
47config FEATURE_DIFF_DIR
48 bool "Enable directory support"
49 default y
50 depends on DIFF
51 help
52 This option enables support for directory and subdirectory
53 comparison.
54
55config ED
56 bool "ed"
57 default y
58 help
59 The original 1970's Unix text editor, from the days of teletypes.
60 Small, simple, evil. Part of SUSv3. If you're not already using
61 this, you don't need it.
62
63config SED
64 bool "sed"
65 default y
66 help
67 sed is used to perform text transformations on a file
68 or input from a pipeline.
69
70config FEATURE_ALLOW_EXEC
71 bool "Allow vi and awk to execute shell commands"
72 default y
73 depends on VI || AWK
74 help
75 Enables vi and awk features which allows user to execute
76 shell commands (using system() C call).
77
78endmenu
Note: See TracBrowser for help on using the repository browser.