2003-02-15 10:53:40 +00:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
# see scripts/kbuild/config-language.txt.
|
|
|
|
#
|
|
|
|
|
|
|
|
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
|
|
|
|
Enable cp -v, rm -v and similar messages.
|
|
|
|
Also enables long option (--verbose) if it exists.
|
|
|
|
Without this option, -v is accepted but ignored.
|
|
|
|
|
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
|
2003-07-14 19:37:08 +00:00
|
|
|
Allow cp and mv to preserve hard links.
|
2003-02-15 10:53:40 +00:00
|
|
|
|
2006-02-06 02:49:45 +00:00
|
|
|
comment "Common options for ls, more and telnet"
|
2006-10-05 10:17:08 +00:00
|
|
|
depends on LS || MORE || TELNET
|
2003-02-15 10:53:40 +00:00
|
|
|
|
2006-10-05 10:17:08 +00:00
|
|
|
config FEATURE_AUTOWIDTH
|
2006-04-13 23:22:16 +00:00
|
|
|
bool "Calculate terminal & column widths"
|
2003-07-26 09:33:16 +00:00
|
|
|
default y
|
2006-10-05 10:17:08 +00:00
|
|
|
depends on LS || MORE || TELNET
|
2003-02-15 10:53:40 +00:00
|
|
|
help
|
2006-02-06 02:49:45 +00:00
|
|
|
This option allows utilities such as 'ls', 'more' and 'telnet'
|
2006-09-17 16:28:10 +00:00
|
|
|
to determine the width of the screen, which can allow them to
|
2006-02-06 02:49:45 +00:00
|
|
|
display additional text or avoid wrapping text onto the next line.
|
2006-09-17 16:28:10 +00:00
|
|
|
If you leave this disabled, your utilities will be especially
|
2006-02-06 02:49:45 +00:00
|
|
|
primitive and will be unable to determine the current screen width.
|
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
|
2006-04-13 23:22:16 +00:00
|
|
|
bool "Support for 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
|
2003-07-14 19:37:08 +00:00
|
|
|
Allow df, du, and ls to have human readable output.
|
2003-02-15 10:53:40 +00:00
|
|
|
|
|
|
|
endmenu
|