Config.src 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see scripts/kbuild/config-language.txt.
  4. #
  5. menu "Editors"
  6. INSERT
  7. config AWK
  8. bool "awk"
  9. default y
  10. help
  11. Awk is used as a pattern scanning and processing language. This is
  12. the BusyBox implementation of that programming language.
  13. config FEATURE_AWK_LIBM
  14. bool "Enable math functions (requires libm)"
  15. default y
  16. depends on AWK
  17. help
  18. Enable math functions of the Awk programming language.
  19. NOTE: This will require libm to be present for linking.
  20. config CMP
  21. bool "cmp"
  22. default y
  23. help
  24. cmp is used to compare two files and returns the result
  25. to standard output.
  26. config DIFF
  27. bool "diff"
  28. default y
  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 FEATURE_DIFF_LONG_OPTIONS
  34. bool "Enable long options"
  35. default y
  36. depends on DIFF && LONG_OPTS
  37. help
  38. Enable use of long options.
  39. config FEATURE_DIFF_DIR
  40. bool "Enable directory support"
  41. default y
  42. depends on DIFF
  43. help
  44. This option enables support for directory and subdirectory
  45. comparison.
  46. config ED
  47. bool "ed"
  48. default y
  49. help
  50. The original 1970's Unix text editor, from the days of teletypes.
  51. Small, simple, evil. Part of SUSv3. If you're not already using
  52. this, you don't need it.
  53. config SED
  54. bool "sed"
  55. default y
  56. help
  57. sed is used to perform text transformations on a file
  58. or input from a pipeline.
  59. config FEATURE_ALLOW_EXEC
  60. bool "Allow vi and awk to execute shell commands"
  61. default y
  62. depends on VI || AWK
  63. help
  64. Enables vi and awk features which allows user to execute
  65. shell commands (using system() C call).
  66. endmenu