Config.in 5.1 KB

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