aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-03-07 23:02:50 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-03-07 23:02:50 +0000
commit673d4bbab6d6731a88611ff3174e199641389349 (patch)
tree14efc204d49a4c246b1411a802b15e8e56df5515 /include
parent7fb8a00341e40579ef8d95155669d33afb749faa (diff)
downloadbusybox-w32-673d4bbab6d6731a88611ff3174e199641389349.tar.gz
busybox-w32-673d4bbab6d6731a88611ff3174e199641389349.tar.bz2
busybox-w32-673d4bbab6d6731a88611ff3174e199641389349.zip
hwclock: support /dev/rtc0 etc
Diffstat (limited to 'include')
-rw-r--r--include/usage.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/include/usage.h b/include/usage.h
index a98d52e24..d8faa4f12 100644
--- a/include/usage.h
+++ b/include/usage.h
@@ -1286,15 +1286,18 @@
1286 " -d STRING URL decode STRING" 1286 " -d STRING URL decode STRING"
1287 1287
1288#define hwclock_trivial_usage \ 1288#define hwclock_trivial_usage \
1289 "[-r|--show] [-s|--hctosys] [-w|--systohc] [-l|--localtime] [-u|--utc]" 1289 "[-r|--show] [-s|--hctosys] [-w|--systohc]" \
1290 " [-l|--localtime] [-u|--utc]" \
1291 " [-f FILE]"
1290#define hwclock_full_usage \ 1292#define hwclock_full_usage \
1291 "Query and set the hardware clock (RTC)" \ 1293 "Query and set a hardware clock (RTC)" \
1292 "\n\nOptions:\n" \ 1294 "\n\nOptions:\n" \
1293 " -r Read hardware clock and print result\n" \ 1295 " -r Read hardware clock and print result\n" \
1294 " -s Set the system time from the hardware clock\n" \ 1296 " -s Set the system time from the hardware clock\n" \
1295 " -w Set the hardware clock to the current system time\n" \ 1297 " -w Set the hardware clock to the current system time\n" \
1296 " -u The hardware clock is kept in coordinated universal time\n" \ 1298 " -u The hardware clock is kept in coordinated universal time\n" \
1297 " -l The hardware clock is kept in local time" 1299 " -l The hardware clock is kept in local time\n" \
1300 " -f FILE Use the specified clock (e.g. /dev/rtc2)"
1298 1301
1299#define id_trivial_usage \ 1302#define id_trivial_usage \
1300 "[OPTIONS]... [USERNAME]" 1303 "[OPTIONS]... [USERNAME]"