1#
2# For a description of the syntax of this configuration file,
3# see docs/Kconfig-language.txt.
4#
5
6menu "Coreutils"
7
8config FEATURE_VERBOSE
9	bool "Support verbose options (usually -v) for various applets"
10	default y
11	help
12	Enable cp -v, rm -v and similar messages.
13	Also enables long option (--verbose) if it exists.
14	Without this option, -v is accepted but ignored.
15
16comment "Common options for date and touch"
17
18config FEATURE_TIMEZONE
19	bool "Allow timezone in dates"
20	default y
21	depends on DESKTOP
22	help
23	Permit the use of timezones when parsing user-provided data
24	strings, e.g. '1996-04-09 12:45:00 -0500'.
25
26	This requires support for the '%z' extension to strptime() which
27	may not be available in all implementations.
28
29comment "Common options for cp and mv"
30	depends on CP || MV
31
32config FEATURE_PRESERVE_HARDLINKS
33	bool "Preserve hard links"
34	default y
35	depends on CP || MV
36	help
37	Allow cp and mv to preserve hard links.
38
39comment "Common options for df, du, ls"
40	depends on DF || DU || LS
41
42config FEATURE_HUMAN_READABLE
43	bool "Support human readable output (example 13k, 23M, 235G)"
44	default y
45	depends on DF || DU || LS
46	help
47	Allow df, du, and ls to have human readable output.
48
49INSERT
50
51endmenu
52