Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Config.src « coreutils - git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6c9e47551a17f28153a24151de29093e36d60606 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#
# For a description of the syntax of this configuration file,
# see docs/Kconfig-language.txt.
#

menu "Coreutils"

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 date and touch"

config FEATURE_TIMEZONE
	bool "Allow timezone in dates"
	default y
	depends on DESKTOP
	help
	Permit the use of timezones when parsing user-provided data
	strings, e.g. '1996-04-09 12:45:00 -0500'.

	This requires support for the '%z' extension to strptime() which
	may not be available in all implementations.

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 df, du, ls"
	depends on DF || DU || LS

config FEATURE_HUMAN_READABLE
	bool "Support 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.

INSERT

endmenu