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