diff options
Diffstat (limited to 'packages/busybox/files/hwclock.sh')
-rw-r--r-- | packages/busybox/files/hwclock.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/busybox/files/hwclock.sh b/packages/busybox/files/hwclock.sh index aab5c054af..6c0af3422c 100644 --- a/packages/busybox/files/hwclock.sh +++ b/packages/busybox/files/hwclock.sh @@ -28,9 +28,9 @@ case "$1" in then if [ -z "$TZ" ] then - hwclock --hctosys $UTC + hwclock -s $UTC;# --hctosys else - TZ="$TZ" hwclock --hctosys $UTC + TZ="$TZ" hwclock -s $UTC;# --hctosys fi fi @@ -53,7 +53,7 @@ case "$1" in fi if [ "$HWCLOCKACCESS" != no ] then - hwclock --systohc $UTC + hwclock -w $UTC;# --systohc fi if [ "$VERBOSE" != no ] then @@ -64,7 +64,7 @@ case "$1" in show) if [ "$HWCLOCKACCESS" != no ] then - hwclock --show $UTC + hwclock -r $UTC;# --show fi ;; *) |