Config.in 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. # DO NOT EDIT. This file is generated from Config.src
  2. #
  3. # For a description of the syntax of this configuration file,
  4. # see scripts/kbuild/config-language.txt.
  5. #
  6. menu "Editors"
  7. config BUSYBOX_PATCH
  8. bool "patch"
  9. depends on !BUSYBOX_DISABLE_PATCH
  10. default n
  11. help
  12. Apply a unified diff formatted patch.
  13. config BUSYBOX_VI
  14. bool "vi"
  15. default y
  16. help
  17. 'vi' is a text editor. More specifically, it is the One True
  18. text editor <grin>. It does, however, have a rather steep
  19. learning curve. If you are not already comfortable with 'vi'
  20. you may wish to use something else.
  21. config BUSYBOX_FEATURE_VI_MAX_LEN
  22. int "Maximum screen width in vi"
  23. range 256 16384
  24. default 4096
  25. depends on BUSYBOX_VI
  26. help
  27. Contrary to what you may think, this is not eating much.
  28. Make it smaller than 4k only if you are very limited on memory.
  29. config BUSYBOX_FEATURE_VI_8BIT
  30. bool "Allow vi to display 8-bit chars (otherwise shows dots)"
  31. default n
  32. depends on BUSYBOX_VI
  33. help
  34. If your terminal can display characters with high bit set,
  35. you may want to enable this. Note: vi is not Unicode-capable.
  36. If your terminal combines several 8-bit bytes into one character
  37. (as in Unicode mode), this will not work properly.
  38. config BUSYBOX_FEATURE_VI_COLON
  39. bool "Enable \":\" colon commands (no \"ex\" mode)"
  40. default y
  41. depends on BUSYBOX_VI
  42. help
  43. Enable a limited set of colon commands for vi. This does not
  44. provide an "ex" mode.
  45. config BUSYBOX_FEATURE_VI_YANKMARK
  46. bool "Enable yank/put commands and mark cmds"
  47. default y
  48. depends on BUSYBOX_VI
  49. help
  50. This will enable you to use yank and put, as well as mark in
  51. busybox vi.
  52. config BUSYBOX_FEATURE_VI_SEARCH
  53. bool "Enable search and replace cmds"
  54. default y
  55. depends on BUSYBOX_VI
  56. help
  57. Select this if you wish to be able to do search and replace in
  58. busybox vi.
  59. config BUSYBOX_FEATURE_VI_REGEX_SEARCH
  60. bool "Enable regex in search and replace"
  61. default n # Uses GNU regex, which may be unavailable. FIXME
  62. depends on BUSYBOX_FEATURE_VI_SEARCH
  63. help
  64. Use extended regex search.
  65. config BUSYBOX_FEATURE_VI_USE_SIGNALS
  66. bool "Catch signals"
  67. default y
  68. depends on BUSYBOX_VI
  69. help
  70. Selecting this option will make busybox vi signal aware. This will
  71. make busybox vi support SIGWINCH to deal with Window Changes, catch
  72. Ctrl-Z and Ctrl-C and alarms.
  73. config BUSYBOX_FEATURE_VI_DOT_CMD
  74. bool "Remember previous cmd and \".\" cmd"
  75. default y
  76. depends on BUSYBOX_VI
  77. help
  78. Make busybox vi remember the last command and be able to repeat it.
  79. config BUSYBOX_FEATURE_VI_READONLY
  80. bool "Enable -R option and \"view\" mode"
  81. default y
  82. depends on BUSYBOX_VI
  83. help
  84. Enable the read-only command line option, which allows the user to
  85. open a file in read-only mode.
  86. config BUSYBOX_FEATURE_VI_SETOPTS
  87. bool "Enable set-able options, ai ic showmatch"
  88. default y
  89. depends on BUSYBOX_VI
  90. help
  91. Enable the editor to set some (ai, ic, showmatch) options.
  92. config BUSYBOX_FEATURE_VI_SET
  93. bool "Support for :set"
  94. default y
  95. depends on BUSYBOX_VI
  96. help
  97. Support for ":set".
  98. config BUSYBOX_FEATURE_VI_WIN_RESIZE
  99. bool "Handle window resize"
  100. default y
  101. depends on BUSYBOX_VI
  102. help
  103. Make busybox vi behave nicely with terminals that get resized.
  104. config BUSYBOX_FEATURE_VI_ASK_TERMINAL
  105. bool "Use 'tell me cursor position' ESC sequence to measure window"
  106. default y
  107. depends on BUSYBOX_VI
  108. help
  109. If terminal size can't be retrieved and $LINES/$COLUMNS are not set,
  110. this option makes vi perform a last-ditch effort to find it:
  111. position cursor to 999,999 and ask terminal to report real
  112. cursor position using "ESC [ 6 n" escape sequence, then read stdin.
  113. This is not clean but helps a lot on serial lines and such.
  114. config BUSYBOX_AWK
  115. bool "awk"
  116. default y
  117. help
  118. Awk is used as a pattern scanning and processing language. This is
  119. the BusyBox implementation of that programming language.
  120. config BUSYBOX_FEATURE_AWK_LIBM
  121. bool "Enable math functions (requires libm)"
  122. default y
  123. depends on BUSYBOX_AWK
  124. help
  125. Enable math functions of the Awk programming language.
  126. NOTE: This will require libm to be present for linking.
  127. config BUSYBOX_CMP
  128. bool "cmp"
  129. default y
  130. help
  131. cmp is used to compare two files and returns the result
  132. to standard output.
  133. config BUSYBOX_DIFF
  134. bool "diff"
  135. depends on !BUSYBOX_DISABLE_DIFF
  136. default y
  137. help
  138. diff compares two files or directories and outputs the
  139. differences between them in a form that can be given to
  140. the patch command.
  141. config BUSYBOX_FEATURE_DIFF_LONG_OPTIONS
  142. bool "Enable long options"
  143. default y
  144. depends on BUSYBOX_DIFF && BUSYBOX_LONG_OPTS
  145. help
  146. Enable use of long options.
  147. config BUSYBOX_FEATURE_DIFF_DIR
  148. bool "Enable directory support"
  149. default y
  150. depends on BUSYBOX_DIFF
  151. help
  152. This option enables support for directory and subdirectory
  153. comparison.
  154. config BUSYBOX_ED
  155. bool "ed"
  156. depends on !BUSYBOX_DISABLE_ED
  157. default y
  158. help
  159. The original 1970's Unix text editor, from the days of teletypes.
  160. Small, simple, evil. Part of SUSv3. If you're not already using
  161. this, you don't need it.
  162. config BUSYBOX_SED
  163. bool "sed"
  164. depends on !BUSYBOX_DISABLE_SED
  165. default y
  166. help
  167. sed is used to perform text transformations on a file
  168. or input from a pipeline.
  169. config BUSYBOX_FEATURE_ALLOW_EXEC
  170. bool "Allow vi and awk to execute shell commands"
  171. default y
  172. depends on BUSYBOX_VI || BUSYBOX_AWK
  173. help
  174. Enables vi and awk features which allows user to execute
  175. shell commands (using system() C call).
  176. endmenu