aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/busybox/files/hwclock.sh
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-core/busybox/files/hwclock.sh')
-rw-r--r--meta/recipes-core/busybox/files/hwclock.sh9
1 files changed, 5 insertions, 4 deletions
diff --git a/meta/recipes-core/busybox/files/hwclock.sh b/meta/recipes-core/busybox/files/hwclock.sh
index 2e50425ba8..cc6d2862ba 100644
--- a/meta/recipes-core/busybox/files/hwclock.sh
+++ b/meta/recipes-core/busybox/files/hwclock.sh
@@ -22,6 +22,7 @@
. /etc/default/rcS
+[ "$UTC" = "yes" ] && tz="--utc" || tz="--localtime"
case "$1" in
start)
if [ "$VERBOSE" != no ]
@@ -34,9 +35,9 @@ case "$1" in
then
if [ -z "$TZ" ]
then
- hwclock --hctosys
+ hwclock $tz --hctosys
else
- TZ="$TZ" hwclock --hctosys
+ TZ="$TZ" hwclock $tz --hctosys
fi
fi
@@ -59,7 +60,7 @@ case "$1" in
fi
if [ "$HWCLOCKACCESS" != no ]
then
- hwclock --systohc
+ hwclock $tz --systohc
fi
if [ "$VERBOSE" != no ]
then
@@ -70,7 +71,7 @@ case "$1" in
show)
if [ "$HWCLOCKACCESS" != no ]
then
- hwclock --show
+ hwclock $tz --show
fi
;;
*)