diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2016-11-23 11:46:32 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2016-11-23 11:46:32 +0100 |
commit | dd898c9f3388fca1d7339a45150fbb7406de0971 (patch) | |
tree | f9f498c9d86c26bd208acc687c5f29b451927ce3 /util-linux/hwclock.c | |
parent | e5dd71f94f8691c41382b89de35088695cca34b9 (diff) | |
download | busybox-w32-dd898c9f3388fca1d7339a45150fbb7406de0971.tar.gz busybox-w32-dd898c9f3388fca1d7339a45150fbb7406de0971.tar.bz2 busybox-w32-dd898c9f3388fca1d7339a45150fbb7406de0971.zip |
Convert all util-linux/* applets to "new style" applet definitions
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux/hwclock.c')
-rw-r--r-- | util-linux/hwclock.c | 36 |
1 files changed, 35 insertions, 1 deletions
diff --git a/util-linux/hwclock.c b/util-linux/hwclock.c index 6c99977cf..084a7f1e9 100644 --- a/util-linux/hwclock.c +++ b/util-linux/hwclock.c | |||
@@ -5,7 +5,41 @@ | |||
5 | * Copyright (C) 2002 Robert Griebl <griebl@gmx.de> | 5 | * Copyright (C) 2002 Robert Griebl <griebl@gmx.de> |
6 | * | 6 | * |
7 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. | 7 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
8 | */ | 8 | */ |
9 | //config:config HWCLOCK | ||
10 | //config: bool "hwclock" | ||
11 | //config: default y | ||
12 | //config: select PLATFORM_LINUX | ||
13 | //config: help | ||
14 | //config: The hwclock utility is used to read and set the hardware clock | ||
15 | //config: on a system. This is primarily used to set the current time on | ||
16 | //config: shutdown in the hardware clock, so the hardware will keep the | ||
17 | //config: correct time when Linux is _not_ running. | ||
18 | //config: | ||
19 | //config:config FEATURE_HWCLOCK_LONG_OPTIONS | ||
20 | //config: bool "Support long options (--hctosys,...)" | ||
21 | //config: default y | ||
22 | //config: depends on HWCLOCK && LONG_OPTS | ||
23 | //config: help | ||
24 | //config: By default, the hwclock utility only uses short options. If you | ||
25 | //config: are overly fond of its long options, such as --hctosys, --utc, etc) | ||
26 | //config: then enable this option. | ||
27 | //config: | ||
28 | //config:config FEATURE_HWCLOCK_ADJTIME_FHS | ||
29 | //config: bool "Use FHS /var/lib/hwclock/adjtime" | ||
30 | //config: default n # util-linux-ng in Fedora 13 still uses /etc/adjtime | ||
31 | //config: depends on HWCLOCK | ||
32 | //config: help | ||
33 | //config: Starting with FHS 2.3, the adjtime state file is supposed to exist | ||
34 | //config: at /var/lib/hwclock/adjtime instead of /etc/adjtime. If you wish | ||
35 | //config: to use the FHS behavior, answer Y here, otherwise answer N for the | ||
36 | //config: classic /etc/adjtime path. | ||
37 | //config: | ||
38 | //config: pathname.com/fhs/pub/fhs-2.3.html#VARLIBHWCLOCKSTATEDIRECTORYFORHWCLO | ||
39 | |||
40 | //applet:IF_HWCLOCK(APPLET(hwclock, BB_DIR_SBIN, BB_SUID_DROP)) | ||
41 | |||
42 | //kbuild:lib-$(CONFIG_HWCLOCK) += hwclock.o | ||
9 | 43 | ||
10 | #include "libbb.h" | 44 | #include "libbb.h" |
11 | /* After libbb.h, since it needs sys/types.h on some systems */ | 45 | /* After libbb.h, since it needs sys/types.h on some systems */ |