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_ED
34 The original 1970's Unix text editor, from the days of teletypes.
35 Small, simple, evil. Part of SUSv3. If you're not already using
36 this, you don't need it.
38 config BUSYBOX_CONFIG_PATCH
42 Apply a unified diff formatted patch.
44 config BUSYBOX_CONFIG_SED
48 sed is used to perform text transformations on a file
49 or input from a pipeline.
51 config BUSYBOX_CONFIG_VI
55 'vi' is a text editor. More specifically, it is the One True
56 text editor <grin>. It does, however, have a rather steep
57 learning curve. If you are not already comfortable with 'vi'
58 you may wish to use something else.
60 config BUSYBOX_CONFIG_FEATURE_VI_COLON
61 bool "Enable \":\" colon commands (no \"ex\" mode)"
63 depends on BUSYBOX_CONFIG_VI
65 Enable a limited set of colon commands for vi. This does not
68 config BUSYBOX_CONFIG_FEATURE_VI_YANKMARK
69 bool "Enable yank/put commands and mark cmds"
71 depends on BUSYBOX_CONFIG_VI
73 This will enable you to use yank and put, as well as mark in
76 config BUSYBOX_CONFIG_FEATURE_VI_SEARCH
77 bool "Enable search and replace cmds"
79 depends on BUSYBOX_CONFIG_VI
81 Select this if you wish to be able to do search and replace in
84 config BUSYBOX_CONFIG_FEATURE_VI_USE_SIGNALS
87 depends on BUSYBOX_CONFIG_VI
89 Selecting this option will make busybox vi signal aware. This will
90 make busybox vi support SIGWINCH to deal with Window Changes, catch
91 Ctrl-Z and Ctrl-C and alarms.
93 config BUSYBOX_CONFIG_FEATURE_VI_DOT_CMD
94 bool "Remember previous cmd and \".\" cmd"
96 depends on BUSYBOX_CONFIG_VI
98 Make busybox vi remember the last command and be able to repeat it.
100 config BUSYBOX_CONFIG_FEATURE_VI_READONLY
101 bool "Enable -R option and \"view\" mode"
103 depends on BUSYBOX_CONFIG_VI
105 Enable the read-only command line option, which allows the user to
106 open a file in read-only mode.
108 config BUSYBOX_CONFIG_FEATURE_VI_SETOPTS
109 bool "Enable set-able options, ai ic showmatch"
111 depends on BUSYBOX_CONFIG_VI
113 Enable the editor to set some (ai, ic, showmatch) options.
115 config BUSYBOX_CONFIG_FEATURE_VI_SET
116 bool "Support for :set"
118 depends on BUSYBOX_CONFIG_VI
122 config BUSYBOX_CONFIG_FEATURE_VI_WIN_RESIZE
123 bool "Handle window resize"
125 depends on BUSYBOX_CONFIG_VI
127 Make busybox vi behave nicely with terminals that get resized.
129 config BUSYBOX_CONFIG_FEATURE_VI_OPTIMIZE_CURSOR
130 bool "Optimize cursor movement"
132 depends on BUSYBOX_CONFIG_VI
134 This will make the cursor movement faster, but requires more memory
135 and it makes the applet a tiny bit larger.
137 config BUSYBOX_CONFIG_FEATURE_ALLOW_EXEC
138 bool "Allow vi and awk to execute shell commands"
140 depends on BUSYBOX_CONFIG_VI || BUSYBOX_CONFIG_AWK
142 Enables vi and awk features which allows user to execute
143 shell commands (using system() C call).