2 # For a description of the syntax of this configuration file,
3 # see scripts/kbuild/config-language.txt.
8 config BUSYBOX_CONFIG_AWK
12 Awk is used as a pattern scanning and processing language. This is
13 the BusyBox implementation of that programming language.
15 config BUSYBOX_CONFIG_AWX
16 bool "Enable awx (awk web extension)"
18 depends on BUSYBOX_CONFIG_AWK
20 awx - awk web extension
22 config BUSYBOX_CONFIG_FEATURE_AWK_MATH
23 bool "Enable math functions (requires libm)"
25 depends on BUSYBOX_CONFIG_AWK
27 Enable math functions of the Awk programming language.
28 NOTE: This will require libm to be present for linking.
30 config BUSYBOX_CONFIG_CMP
34 cmp is used to compare two files and returns the result
37 config BUSYBOX_CONFIG_DIFF
41 diff compares two files or directories and outputs the
42 differences between them in a form that can be given to
45 config BUSYBOX_CONFIG_FEATURE_DIFF_BINARY
46 bool "Enable checks for binary files"
48 depends on BUSYBOX_CONFIG_DIFF
50 This option enables support for checking for binary files
51 before a comparison is carried out.
53 config BUSYBOX_CONFIG_FEATURE_DIFF_DIR
54 bool "Enable directory support"
56 depends on BUSYBOX_CONFIG_DIFF
58 This option enables support for directory and subdirectory
61 config BUSYBOX_CONFIG_FEATURE_DIFF_MINIMAL
62 bool "Enable -d option to find smaller sets of changes"
64 depends on BUSYBOX_CONFIG_DIFF
66 Enabling this option allows the use of -d to make diff
67 try hard to find the smallest possible set of changes.
69 config BUSYBOX_CONFIG_ED
73 The original 1970's Unix text editor, from the days of teletypes.
74 Small, simple, evil. Part of SUSv3. If you're not already using
75 this, you don't need it.
77 config BUSYBOX_CONFIG_PATCH
81 Apply a unified diff formatted patch.
83 config BUSYBOX_CONFIG_SED
87 sed is used to perform text transformations on a file
88 or input from a pipeline.
90 config BUSYBOX_CONFIG_VI
94 'vi' is a text editor. More specifically, it is the One True
95 text editor <grin>. It does, however, have a rather steep
96 learning curve. If you are not already comfortable with 'vi'
97 you may wish to use something else.
99 config BUSYBOX_CONFIG_FEATURE_VI_MAX_LEN
100 int "Maximum line length in vi"
103 depends on BUSYBOX_CONFIG_VI
105 vi uses on-stack buffers for intermediate line buffers.
106 You may want to decrease this parameter if your target machine
107 benefits from smaller stack usage.
109 config BUSYBOX_CONFIG_FEATURE_VI_COLON
110 bool "Enable \":\" colon commands (no \"ex\" mode)"
112 depends on BUSYBOX_CONFIG_VI
114 Enable a limited set of colon commands for vi. This does not
115 provide an "ex" mode.
117 config BUSYBOX_CONFIG_FEATURE_VI_YANKMARK
118 bool "Enable yank/put commands and mark cmds"
120 depends on BUSYBOX_CONFIG_VI
122 This will enable you to use yank and put, as well as mark in
125 config BUSYBOX_CONFIG_FEATURE_VI_SEARCH
126 bool "Enable search and replace cmds"
128 depends on BUSYBOX_CONFIG_VI
130 Select this if you wish to be able to do search and replace in
133 config BUSYBOX_CONFIG_FEATURE_VI_USE_SIGNALS
136 depends on BUSYBOX_CONFIG_VI
138 Selecting this option will make busybox vi signal aware. This will
139 make busybox vi support SIGWINCH to deal with Window Changes, catch
140 Ctrl-Z and Ctrl-C and alarms.
142 config BUSYBOX_CONFIG_FEATURE_VI_DOT_CMD
143 bool "Remember previous cmd and \".\" cmd"
145 depends on BUSYBOX_CONFIG_VI
147 Make busybox vi remember the last command and be able to repeat it.
149 config BUSYBOX_CONFIG_FEATURE_VI_READONLY
150 bool "Enable -R option and \"view\" mode"
152 depends on BUSYBOX_CONFIG_VI
154 Enable the read-only command line option, which allows the user to
155 open a file in read-only mode.
157 config BUSYBOX_CONFIG_FEATURE_VI_SETOPTS
158 bool "Enable set-able options, ai ic showmatch"
160 depends on BUSYBOX_CONFIG_VI
162 Enable the editor to set some (ai, ic, showmatch) options.
164 config BUSYBOX_CONFIG_FEATURE_VI_SET
165 bool "Support for :set"
167 depends on BUSYBOX_CONFIG_VI
171 config BUSYBOX_CONFIG_FEATURE_VI_WIN_RESIZE
172 bool "Handle window resize"
174 depends on BUSYBOX_CONFIG_VI
176 Make busybox vi behave nicely with terminals that get resized.
178 config BUSYBOX_CONFIG_FEATURE_VI_OPTIMIZE_CURSOR
179 bool "Optimize cursor movement"
181 depends on BUSYBOX_CONFIG_VI
183 This will make the cursor movement faster, but requires more memory
184 and it makes the applet a tiny bit larger.
186 config BUSYBOX_CONFIG_FEATURE_ALLOW_EXEC
187 bool "Allow vi and awk to execute shell commands"
189 depends on BUSYBOX_CONFIG_VI || BUSYBOX_CONFIG_AWK
191 Enables vi and awk features which allows user to execute
192 shell commands (using system() C call).