diff options
author | Yousong Zhou <yszhou4tech@gmail.com> | 2019-02-27 03:23:45 +0000 |
---|---|---|
committer | Yousong Zhou <yszhou4tech@gmail.com> | 2019-03-01 08:09:41 +0000 |
commit | eb6f5a58b904814f9a73281949f32f04c190d727 (patch) | |
tree | 2aae8c89eda14c375baa4a25e139c8788ca80364 /package/utils/busybox/config/editors | |
parent | 157072ea2b7bdbe8de1339936a5933061a27e67a (diff) | |
download | upstream-eb6f5a58b904814f9a73281949f32f04c190d727.tar.gz upstream-eb6f5a58b904814f9a73281949f32f04c190d727.tar.bz2 upstream-eb6f5a58b904814f9a73281949f32f04c190d727.zip |
busybox: sync Config.in files
The change was made with the following commands
cd package/utils/busybox/config
../convert_menuconfig.pl ~/git-repo/openwrt/openwrt/build_dir/target-mips_24kc_musl/busybox-1.30.1
convert_defaults.pl has no changes other than overwriting defaults for
BUSYBOX_DEFAULT_FEATURE_IPV6
Resolves FS#2146
Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
Diffstat (limited to 'package/utils/busybox/config/editors')
-rw-r--r-- | package/utils/busybox/config/editors/Config.in | 27 |
1 files changed, 13 insertions, 14 deletions
diff --git a/package/utils/busybox/config/editors/Config.in b/package/utils/busybox/config/editors/Config.in index 46723bea76..c0fbef1939 100644 --- a/package/utils/busybox/config/editors/Config.in +++ b/package/utils/busybox/config/editors/Config.in @@ -1,17 +1,16 @@ # DO NOT EDIT. This file is generated from Config.src # # For a description of the syntax of this configuration file, -# see scripts/kbuild/config-language.txt. +# see docs/Kconfig-language.txt. # menu "Editors" config BUSYBOX_CONFIG_AWK - bool "awk" + bool "awk (23 kb)" default BUSYBOX_DEFAULT_AWK help - Awk is used as a pattern scanning and processing language. This is - the BusyBox implementation of that programming language. + Awk is used as a pattern scanning and processing language. config BUSYBOX_CONFIG_FEATURE_AWK_LIBM bool "Enable math functions (requires libm)" @@ -19,7 +18,7 @@ config BUSYBOX_CONFIG_FEATURE_AWK_LIBM depends on BUSYBOX_CONFIG_AWK help Enable math functions of the Awk programming language. - NOTE: This will require libm to be present for linking. + NOTE: This requires libm to be present for linking. config BUSYBOX_CONFIG_FEATURE_AWK_GNU_EXTENSIONS bool "Enable a few GNU extensions" @@ -29,16 +28,16 @@ config BUSYBOX_CONFIG_FEATURE_AWK_GNU_EXTENSIONS Enable a few features from gawk: * command line option -e AWK_PROGRAM * simultaneous use of -f and -e on the command line. - This enables the use of awk library files. - Ex: awk -f mylib.awk -e '{print myfunction($1);}' ... + This enables the use of awk library files. + Example: awk -f mylib.awk -e '{print myfunction($1);}' ... config BUSYBOX_CONFIG_CMP - bool "cmp" + bool "cmp (4.9 kb)" default BUSYBOX_DEFAULT_CMP help cmp is used to compare two files and returns the result to standard output. config BUSYBOX_CONFIG_DIFF - bool "diff" + bool "diff (13 kb)" default BUSYBOX_DEFAULT_DIFF help diff compares two files or directories and outputs the @@ -58,25 +57,25 @@ config BUSYBOX_CONFIG_FEATURE_DIFF_DIR This option enables support for directory and subdirectory comparison. config BUSYBOX_CONFIG_ED - bool "ed" + bool "ed (21 kb)" default BUSYBOX_DEFAULT_ED help The original 1970's Unix text editor, from the days of teletypes. Small, simple, evil. Part of SUSv3. If you're not already using this, you don't need it. config BUSYBOX_CONFIG_PATCH - bool "patch" + bool "patch (9.4 kb)" default BUSYBOX_DEFAULT_PATCH help Apply a unified diff formatted patch. config BUSYBOX_CONFIG_SED - bool "sed" + bool "sed (12 kb)" default BUSYBOX_DEFAULT_SED help sed is used to perform text transformations on a file or input from a pipeline. config BUSYBOX_CONFIG_VI - bool "vi" + bool "vi (23 kb)" default BUSYBOX_DEFAULT_VI help 'vi' is a text editor. More specifically, it is the One True @@ -116,7 +115,7 @@ config BUSYBOX_CONFIG_FEATURE_VI_YANKMARK default BUSYBOX_DEFAULT_FEATURE_VI_YANKMARK depends on BUSYBOX_CONFIG_VI help - This will enable you to use yank and put, as well as mark. + This enables you to use yank and put, as well as mark. config BUSYBOX_CONFIG_FEATURE_VI_SEARCH bool "Enable search and replace cmds" |