123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- #
- # For a description of the syntax of this configuration file,
- # see scripts/kbuild/config-language.txt.
- #
- menu "Coreutils"
- INSERT
- 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.
- comment "Common options for cp and mv"
- depends on CP || MV
- config FEATURE_PRESERVE_HARDLINKS
- bool "Preserve hard links"
- default y
- depends on CP || MV
- help
- Allow cp and mv to preserve hard links.
- comment "Common options for ls, more and telnet"
- depends on LS || MORE || TELNET
- config FEATURE_AUTOWIDTH
- bool "Calculate terminal & column widths"
- default y
- depends on LS || MORE || TELNET
- help
- This option allows utilities such as 'ls', 'more' and 'telnet'
- to determine the width of the screen, which can allow them to
- display additional text or avoid wrapping text onto the next line.
- If you leave this disabled, your utilities will be especially
- primitive and will be unable to determine the current screen width.
- comment "Common options for df, du, ls"
- depends on DF || DU || LS
- config FEATURE_HUMAN_READABLE
- bool "Support for human readable output (example 13k, 23M, 235G)"
- default y
- depends on DF || DU || LS
- help
- Allow df, du, and ls to have human readable output.
- endmenu
|