2003-02-15 10:53:40 +00:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2018-05-31 22:15:55 -07:00
|
|
|
# see docs/Kconfig-language.txt.
|
2003-02-15 10:53:40 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
menu "Coreutils"
|
|
|
|
|
2010-06-04 19:59:49 +02:00
|
|
|
INSERT
|
2003-02-15 10:53:40 +00:00
|
|
|
|
2014-05-19 16:23:50 +02:00
|
|
|
comment "Common options"
|
|
|
|
|
|
|
|
config FEATURE_VERBOSE
|
|
|
|
bool "Support verbose options (usually -v) for various applets"
|
|
|
|
default y
|
|
|
|
help
|
2017-07-21 09:50:55 +02:00
|
|
|
Enable cp -v, rm -v and similar messages.
|
|
|
|
Also enables long option (--verbose) if it exists.
|
|
|
|
Without this option, -v is accepted but ignored.
|
2014-05-19 16:23:50 +02:00
|
|
|
|
2003-02-15 10:53:40 +00:00
|
|
|
comment "Common options for cp and mv"
|
2006-10-05 10:17:08 +00:00
|
|
|
depends on CP || MV
|
2003-02-15 10:53:40 +00:00
|
|
|
|
2006-10-05 10:17:08 +00:00
|
|
|
config FEATURE_PRESERVE_HARDLINKS
|
2006-04-13 23:22:16 +00:00
|
|
|
bool "Preserve hard links"
|
2010-06-06 04:14:28 +02:00
|
|
|
default y
|
2006-10-05 10:17:08 +00:00
|
|
|
depends on CP || MV
|
2003-02-15 10:53:40 +00:00
|
|
|
help
|
2017-07-21 09:50:55 +02:00
|
|
|
Allow cp and mv to preserve hard links.
|
2003-02-15 10:53:40 +00:00
|
|
|
|
|
|
|
comment "Common options for df, du, ls"
|
2006-10-05 10:17:08 +00:00
|
|
|
depends on DF || DU || LS
|
2003-02-15 10:53:40 +00:00
|
|
|
|
2006-10-05 10:17:08 +00:00
|
|
|
config FEATURE_HUMAN_READABLE
|
2017-01-10 14:58:54 +01:00
|
|
|
bool "Support human readable output (example 13k, 23M, 235G)"
|
2010-06-06 04:14:28 +02:00
|
|
|
default y
|
2006-10-05 10:17:08 +00:00
|
|
|
depends on DF || DU || LS
|
2003-02-15 10:53:40 +00:00
|
|
|
help
|
2017-07-21 09:50:55 +02:00
|
|
|
Allow df, du, and ls to have human readable output.
|
2003-02-15 10:53:40 +00:00
|
|
|
|
|
|
|
endmenu
|