aboutsummaryrefslogtreecommitdiff
path: root/coreutils/Config.src
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2021-10-12 13:23:29 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2021-10-12 13:23:29 +0200
commit94c78aa0b91f2150bd038866addf3d0ee69474a8 (patch)
treec114f2e6a36cf0806a24aaa620157f5a480e5d4f /coreutils/Config.src
parent7c3e96d4b3d419d76f97e17d42a4401ee685b7ec (diff)
downloadbusybox-w32-94c78aa0b91f2150bd038866addf3d0ee69474a8.tar.gz
busybox-w32-94c78aa0b91f2150bd038866addf3d0ee69474a8.tar.bz2
busybox-w32-94c78aa0b91f2150bd038866addf3d0ee69474a8.zip
config system: move some options closer to relevalnt tool subdirectories
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils/Config.src')
-rw-r--r--coreutils/Config.src19
1 files changed, 15 insertions, 4 deletions
diff --git a/coreutils/Config.src b/coreutils/Config.src
index 1bded03a6..6c9e47551 100644
--- a/coreutils/Config.src
+++ b/coreutils/Config.src
@@ -5,10 +5,6 @@
5 5
6menu "Coreutils" 6menu "Coreutils"
7 7
8INSERT
9
10comment "Common options"
11
12config FEATURE_VERBOSE 8config FEATURE_VERBOSE
13 bool "Support verbose options (usually -v) for various applets" 9 bool "Support verbose options (usually -v) for various applets"
14 default y 10 default y
@@ -17,6 +13,19 @@ config FEATURE_VERBOSE
17 Also enables long option (--verbose) if it exists. 13 Also enables long option (--verbose) if it exists.
18 Without this option, -v is accepted but ignored. 14 Without this option, -v is accepted but ignored.
19 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
20comment "Common options for cp and mv" 29comment "Common options for cp and mv"
21 depends on CP || MV 30 depends on CP || MV
22 31
@@ -37,4 +46,6 @@ config FEATURE_HUMAN_READABLE
37 help 46 help
38 Allow df, du, and ls to have human readable output. 47 Allow df, du, and ls to have human readable output.
39 48
49INSERT
50
40endmenu 51endmenu