util-linux/lsusb.c: print manufacturer/product strings if available
[busybox-git.git] / coreutils / Config.src
blob6c9e47551a17f28153a24151de29093e36d60606
2 # For a description of the syntax of this configuration file,
3 # see docs/Kconfig-language.txt.
6 menu "Coreutils"
8 config 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.
16 comment "Common options for date and touch"
18 config 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'.
26         This requires support for the '%z' extension to strptime() which
27         may not be available in all implementations.
29 comment "Common options for cp and mv"
30         depends on CP || MV
32 config 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.
39 comment "Common options for df, du, ls"
40         depends on DF || DU || LS
42 config 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.
49 INSERT
51 endmenu