blob: 1bded03a687aba8250b26b89cfece5385e05a1f9 [file] [log] [blame]
Glenn L McGrath3238ea12003-02-15 10:53:40 +00001#
2# For a description of the syntax of this configuration file,
Kartik Agaram43b17b12018-05-31 22:15:55 -07003# see docs/Kconfig-language.txt.
Glenn L McGrath3238ea12003-02-15 10:53:40 +00004#
5
6menu "Coreutils"
7
Denys Vlasenkoe4070cb2010-06-04 19:59:49 +02008INSERT
Glenn L McGrath3238ea12003-02-15 10:53:40 +00009
Denys Vlasenko17f84182014-05-19 16:23:50 +020010comment "Common options"
11
12config FEATURE_VERBOSE
13 bool "Support verbose options (usually -v) for various applets"
14 default y
15 help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020016 Enable cp -v, rm -v and similar messages.
17 Also enables long option (--verbose) if it exists.
18 Without this option, -v is accepted but ignored.
Denys Vlasenko17f84182014-05-19 16:23:50 +020019
Glenn L McGrath3238ea12003-02-15 10:53:40 +000020comment "Common options for cp and mv"
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000021 depends on CP || MV
Glenn L McGrath3238ea12003-02-15 10:53:40 +000022
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000023config FEATURE_PRESERVE_HARDLINKS
Rob Landley2ec922e2006-04-13 23:22:16 +000024 bool "Preserve hard links"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +020025 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000026 depends on CP || MV
Glenn L McGrath3238ea12003-02-15 10:53:40 +000027 help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020028 Allow cp and mv to preserve hard links.
Glenn L McGrath3238ea12003-02-15 10:53:40 +000029
Glenn L McGrath3238ea12003-02-15 10:53:40 +000030comment "Common options for df, du, ls"
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000031 depends on DF || DU || LS
Glenn L McGrath3238ea12003-02-15 10:53:40 +000032
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000033config FEATURE_HUMAN_READABLE
Denys Vlasenkof5604222017-01-10 14:58:54 +010034 bool "Support human readable output (example 13k, 23M, 235G)"
Denys Vlasenko2f32bf82010-06-06 04:14:28 +020035 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000036 depends on DF || DU || LS
Glenn L McGrath3238ea12003-02-15 10:53:40 +000037 help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020038 Allow df, du, and ls to have human readable output.
Glenn L McGrath3238ea12003-02-15 10:53:40 +000039
Glenn L McGrath3238ea12003-02-15 10:53:40 +000040endmenu