2003-02-15 16:23:40 +05:30
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2018-06-01 10:45:55 +05:30
|
|
|
# see docs/Kconfig-language.txt.
|
2003-02-15 16:23:40 +05:30
|
|
|
#
|
|
|
|
|
|
|
|
menu "Coreutils"
|
|
|
|
|
2010-06-04 23:29:49 +05:30
|
|
|
INSERT
|
2003-02-15 16:23:40 +05:30
|
|
|
|
2014-05-19 19:53:50 +05:30
|
|
|
comment "Common options"
|
|
|
|
|
|
|
|
config FEATURE_VERBOSE
|
|
|
|
bool "Support verbose options (usually -v) for various applets"
|
|
|
|
default y
|
|
|
|
help
|
2017-07-21 13:20:55 +05:30
|
|
|
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 19:53:50 +05:30
|
|
|
|
2003-02-15 16:23:40 +05:30
|
|
|
comment "Common options for cp and mv"
|
2006-10-05 15:47:08 +05:30
|
|
|
depends on CP || MV
|
2003-02-15 16:23:40 +05:30
|
|
|
|
2006-10-05 15:47:08 +05:30
|
|
|
config FEATURE_PRESERVE_HARDLINKS
|
2006-04-14 04:52:16 +05:30
|
|
|
bool "Preserve hard links"
|
2010-06-06 07:44:28 +05:30
|
|
|
default y
|
2006-10-05 15:47:08 +05:30
|
|
|
depends on CP || MV
|
2003-02-15 16:23:40 +05:30
|
|
|
help
|
2017-07-21 13:20:55 +05:30
|
|
|
Allow cp and mv to preserve hard links.
|
2003-02-15 16:23:40 +05:30
|
|
|
|
|
|
|
comment "Common options for df, du, ls"
|
2006-10-05 15:47:08 +05:30
|
|
|
depends on DF || DU || LS
|
2003-02-15 16:23:40 +05:30
|
|
|
|
2006-10-05 15:47:08 +05:30
|
|
|
config FEATURE_HUMAN_READABLE
|
2017-01-10 19:28:54 +05:30
|
|
|
bool "Support human readable output (example 13k, 23M, 235G)"
|
2010-06-06 07:44:28 +05:30
|
|
|
default y
|
2006-10-05 15:47:08 +05:30
|
|
|
depends on DF || DU || LS
|
2003-02-15 16:23:40 +05:30
|
|
|
help
|
2017-07-21 13:20:55 +05:30
|
|
|
Allow df, du, and ls to have human readable output.
|
2003-02-15 16:23:40 +05:30
|
|
|
|
|
|
|
endmenu
|