ntpd: default to FEATURE_NTP_AUTH=y
[oweals/busybox.git] / coreutils / Config.src
1 #
2 # For a description of the syntax of this configuration file,
3 # see docs/Kconfig-language.txt.
4 #
5
6 menu "Coreutils"
7
8 INSERT
9
10 comment "Common options"
11
12 config 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
20 comment "Common options for cp and mv"
21         depends on CP || MV
22
23 config 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
30 comment "Common options for df, du, ls"
31         depends on DF || DU || LS
32
33 config 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
40 endmenu