busybox/coreutils/Config.src
<<
>>
Prefs
   1#
   2# For a description of the syntax of this configuration file,
   3# see docs/Kconfig-language.txt.
   4#
   5
   6menu "Coreutils"
   7
   8INSERT
   9
  10comment "Common options"
  11
  12config FEATURE_VERBOSE
  13        bool "Support verbose options (usually -v) for various applets"
  14        default y
  15        help
  16        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.
  19
  20comment "Common options for cp and mv"
  21        depends on CP || MV
  22
  23config FEATURE_PRESERVE_HARDLINKS
  24        bool "Preserve hard links"
  25        default y
  26        depends on CP || MV
  27        help
  28        Allow cp and mv to preserve hard links.
  29
  30comment "Common options for df, du, ls"
  31        depends on DF || DU || LS
  32
  33config FEATURE_HUMAN_READABLE
  34        bool "Support human readable output (example 13k, 23M, 235G)"
  35        default y
  36        depends on DF || DU || LS
  37        help
  38        Allow df, du, and ls to have human readable output.
  39
  40endmenu
  41