blob: 3361d89f153f0d563c434a69e78c77448c585e7f [file] [log] [blame]
Eric Andersenc9f20d92002-12-05 08:41:41 +00001#
2# For a description of the syntax of this configuration file,
3# see scripts/kbuild/config-language.txt.
4#
5
6menu "Editors"
7
Denis Vlasenko7d219aa2006-10-05 10:17:08 +00008config AWK
Eric Andersenc9f20d92002-12-05 08:41:41 +00009 bool "awk"
10 default n
11 help
Eric Andersene5642112003-07-14 19:37:08 +000012 Awk is used as a pattern scanning and processing language. This is
13 the BusyBox implementation of that programming language.
Eric Andersenc9f20d92002-12-05 08:41:41 +000014
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000015config FEATURE_AWK_MATH
Rob Landley2ec922e2006-04-13 23:22:16 +000016 bool "Enable math functions (requires libm)"
Eric Andersenc9f20d92002-12-05 08:41:41 +000017 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000018 depends on AWK
Eric Andersenc9f20d92002-12-05 08:41:41 +000019 help
Eric Andersene5642112003-07-14 19:37:08 +000020 Enable math functions of the Awk programming language.
21 NOTE: This will require libm to be present for linking.
Eric Andersenc9f20d92002-12-05 08:41:41 +000022
Denis Vlasenkocc5e0902007-06-12 08:12:33 +000023config CMP
24 bool "cmp"
25 default n
26 help
27 cmp is used to compare two files and returns the result
28 to standard output.
29
30config DIFF
31 bool "diff"
32 default n
33 help
34 diff compares two files or directories and outputs the
35 differences between them in a form that can be given to
36 the patch command.
37
38config FEATURE_DIFF_BINARY
39 bool "Enable checks for binary files"
40 default y
41 depends on DIFF
42 help
43 This option enables support for checking for binary files
44 before a comparison is carried out.
45
46config FEATURE_DIFF_DIR
47 bool "Enable directory support"
48 default y
49 depends on DIFF
50 help
51 This option enables support for directory and subdirectory
52 comparison.
53
54config FEATURE_DIFF_MINIMAL
55 bool "Enable -d option to find smaller sets of changes"
56 default n
57 depends on DIFF
58 help
59 Enabling this option allows the use of -d to make diff
60 try hard to find the smallest possible set of changes.
61
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000062config ED
Rob Landley3b890392006-05-04 20:56:43 +000063 bool "ed"
64 default n
65 help
66 The original 1970's Unix text editor, from the days of teletypes.
67 Small, simple, evil. Part of SUSv3. If you're not already using
68 this, you don't need it.
69
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000070config PATCH
Glenn L McGrath655d8142003-06-22 15:32:41 +000071 bool "patch"
72 default n
73 help
Eric Andersen88c916b2003-10-22 09:58:56 +000074 Apply a unified diff formatted patch.
Glenn L McGrath655d8142003-06-22 15:32:41 +000075
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000076config SED
Eric Andersenc9f20d92002-12-05 08:41:41 +000077 bool "sed"
78 default n
79 help
Eric Andersen65e20a32003-07-05 07:52:35 +000080 sed is used to perform text transformations on a file
81 or input from a pipeline.
Eric Andersenc9f20d92002-12-05 08:41:41 +000082
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000083config VI
Eric Andersenc9f20d92002-12-05 08:41:41 +000084 bool "vi"
85 default n
86 help
Eric Andersen65e20a32003-07-05 07:52:35 +000087 'vi' is a text editor. More specifically, it is the One True
Eric Andersenc7bda1c2004-03-15 08:29:22 +000088 text editor <grin>. It does, however, have a rather steep
Eric Andersen65e20a32003-07-05 07:52:35 +000089 learning curve. If you are not already comfortable with 'vi'
90 you may wish to use something else.
Eric Andersenc9f20d92002-12-05 08:41:41 +000091
Denis Vlasenkoe8a07882007-06-10 15:08:44 +000092config FEATURE_VI_MAX_LEN
93 int "Maximum line length in vi"
94 range 256 16384
95 default 1024
96 depends on VI
97 help
98 vi uses on-stack buffers for intermediate line buffers.
99 You may want to decrease this parameter if your target machine
100 benefits from smaller stack usage.
101
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000102config FEATURE_VI_COLON
Rob Landley2ec922e2006-04-13 23:22:16 +0000103 bool "Enable \":\" colon commands (no \"ex\" mode)"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000104 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000105 depends on VI
Eric Andersenc9f20d92002-12-05 08:41:41 +0000106 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000107 Enable a limited set of colon commands for vi. This does not
108 provide an "ex" mode.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000109
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000110config FEATURE_VI_YANKMARK
Rob Landley2ec922e2006-04-13 23:22:16 +0000111 bool "Enable yank/put commands and mark cmds"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000112 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000113 depends on VI
Eric Andersenc9f20d92002-12-05 08:41:41 +0000114 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000115 This will enable you to use yank and put, as well as mark in
116 busybox vi.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000117
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000118config FEATURE_VI_SEARCH
Rob Landley2ec922e2006-04-13 23:22:16 +0000119 bool "Enable search and replace cmds"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000120 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000121 depends on VI
Eric Andersenc9f20d92002-12-05 08:41:41 +0000122 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000123 Select this if you wish to be able to do search and replace in
124 busybox vi.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000125
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000126config FEATURE_VI_USE_SIGNALS
Rob Landley2ec922e2006-04-13 23:22:16 +0000127 bool "Catch signals"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000128 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000129 depends on VI
Eric Andersenc9f20d92002-12-05 08:41:41 +0000130 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000131 Selecting this option will make busybox vi signal aware. This will
132 make busybox vi support SIGWINCH to deal with Window Changes, catch
133 Ctrl-Z and Ctrl-C and alarms.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000134
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000135config FEATURE_VI_DOT_CMD
Rob Landley2ec922e2006-04-13 23:22:16 +0000136 bool "Remember previous cmd and \".\" cmd"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000137 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000138 depends on VI
Eric Andersenc9f20d92002-12-05 08:41:41 +0000139 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000140 Make busybox vi remember the last command and be able to repeat it.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000141
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000142config FEATURE_VI_READONLY
Rob Landley2ec922e2006-04-13 23:22:16 +0000143 bool "Enable -R option and \"view\" mode"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000144 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000145 depends on VI
Eric Andersenc9f20d92002-12-05 08:41:41 +0000146 help
Eric Andersene5642112003-07-14 19:37:08 +0000147 Enable the read-only command line option, which allows the user to
148 open a file in read-only mode.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000149
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000150config FEATURE_VI_SETOPTS
Rob Landley2ec922e2006-04-13 23:22:16 +0000151 bool "Enable set-able options, ai ic showmatch"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000152 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000153 depends on VI
Eric Andersenc9f20d92002-12-05 08:41:41 +0000154 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000155 Enable the editor to set some (ai, ic, showmatch) options.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000156
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000157config FEATURE_VI_SET
Rob Landley2ec922e2006-04-13 23:22:16 +0000158 bool "Support for :set"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000159 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000160 depends on VI
Eric Andersenc9f20d92002-12-05 08:41:41 +0000161 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000162 Support for ":set".
Eric Andersenc9f20d92002-12-05 08:41:41 +0000163
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000164config FEATURE_VI_WIN_RESIZE
Rob Landley2ec922e2006-04-13 23:22:16 +0000165 bool "Handle window resize"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000166 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000167 depends on VI
Eric Andersenc9f20d92002-12-05 08:41:41 +0000168 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000169 Make busybox vi behave nicely with terminals that get resized.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000170
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000171config FEATURE_VI_OPTIMIZE_CURSOR
Rob Landley2ec922e2006-04-13 23:22:16 +0000172 bool "Optimize cursor movement"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000173 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000174 depends on VI
Eric Andersenc9f20d92002-12-05 08:41:41 +0000175 help
Eric Andersen9c3c38d2003-07-22 09:59:34 +0000176 This will make the cursor movement faster, but requires more memory
177 and it makes the applet a tiny bit larger.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000178
Denis Vlasenko249fabf2006-12-19 00:29:22 +0000179config FEATURE_ALLOW_EXEC
180 bool "Allow vi and awk to execute shell commands"
181 default y
182 depends on VI || AWK
183 help
184 Enables vi and awk features which allows user to execute
185 shell commands (using system() C call).
Eric Andersenc9f20d92002-12-05 08:41:41 +0000186
Denis Vlasenko249fabf2006-12-19 00:29:22 +0000187endmenu