2008-03-03 02:44:01 +05:30
|
|
|
#!@PREFIX@/sbin/runscript
|
2008-01-11 21:01:10 +05:30
|
|
|
# Copyright 2007-2008 Roy Marples <roy@marples.name>
|
|
|
|
# All rights reserved. Released under the 2-clause BSD license.
|
2007-11-14 20:52:04 +05:30
|
|
|
|
2007-11-20 23:49:48 +05:30
|
|
|
extra_commands="save show"
|
2007-04-05 16:48:42 +05:30
|
|
|
|
2007-07-11 00:39:41 +05:30
|
|
|
description="Sets the local clock to UTC or Local Time."
|
|
|
|
description_save="Saves the current time in the BIOS."
|
2007-10-24 14:20:14 +05:30
|
|
|
description_show="Displays the current time in the BIOS."
|
2007-07-11 00:39:41 +05:30
|
|
|
|
2007-11-24 03:59:18 +05:30
|
|
|
clock_adjfile=${clock_adjfile:-${CLOCK_ADJFILE}}
|
|
|
|
clock_args=${clock_args:-${CLOCK_OPTS}}
|
|
|
|
clock_systohc=${clock_systohc:-${CLOCK_SYSTOHC}}
|
|
|
|
|
2007-12-14 19:42:38 +05:30
|
|
|
clock=${clock:-${CLOCK:-UTC}}
|
|
|
|
if [ "${clock}" = "UTC" ]; then
|
|
|
|
utc="UTC"
|
|
|
|
utc_cmd="--utc"
|
|
|
|
else
|
|
|
|
utc="Local Time"
|
|
|
|
utc_cmd="--localtime"
|
|
|
|
fi
|
|
|
|
|
2008-01-11 17:43:46 +05:30
|
|
|
depend()
|
|
|
|
{
|
2007-11-24 03:59:18 +05:30
|
|
|
if yesno ${clock_adjfile}; then
|
2008-01-31 23:31:20 +05:30
|
|
|
use root
|
2007-10-24 04:19:21 +05:30
|
|
|
else
|
|
|
|
before *
|
|
|
|
fi
|
2008-03-03 02:43:21 +05:30
|
|
|
keyword noprefix nouml novps noxenu
|
2007-04-05 16:48:42 +05:30
|
|
|
}
|
|
|
|
|
2008-01-11 17:43:46 +05:30
|
|
|
setupopts()
|
|
|
|
{
|
2008-02-19 19:59:20 +05:30
|
|
|
case "$(uname -m)" in
|
|
|
|
s390*)
|
|
|
|
utc="s390"
|
2007-04-05 16:48:42 +05:30
|
|
|
;;
|
|
|
|
*)
|
2008-02-19 19:59:20 +05:30
|
|
|
if [ -e /proc/devices ] && \
|
|
|
|
grep -q " cobd$" /proc/devices
|
|
|
|
then
|
|
|
|
utc="coLinux"
|
|
|
|
fi
|
2007-04-05 16:48:42 +05:30
|
|
|
;;
|
|
|
|
esac
|
2007-12-14 19:42:38 +05:30
|
|
|
|
|
|
|
case "${utc}" in
|
|
|
|
UTC|Local" "Time);;
|
|
|
|
*) unset utc_cmd;;
|
|
|
|
esac
|
2007-04-05 16:48:42 +05:30
|
|
|
}
|
|
|
|
|
2008-01-08 20:28:56 +05:30
|
|
|
# hwclock doesn't always return non zero on error
|
2008-01-11 17:43:46 +05:30
|
|
|
_hwclock()
|
|
|
|
{
|
2008-01-08 20:28:56 +05:30
|
|
|
local err="$(hwclock "$@" 2>&1 >/dev/null)"
|
|
|
|
|
|
|
|
[ -z "${err}" ] && return 0
|
|
|
|
echo "${err}" >&2
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2008-01-11 17:43:46 +05:30
|
|
|
start()
|
|
|
|
{
|
2007-12-14 19:42:38 +05:30
|
|
|
local retval=0 errstr=""
|
2007-04-05 16:48:42 +05:30
|
|
|
setupopts
|
|
|
|
|
2008-01-04 18:20:04 +05:30
|
|
|
if [ -z "${utc_cmd}" ]; then
|
|
|
|
ewarn "Not setting clock for ${utc} system"
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
2007-12-14 19:42:38 +05:30
|
|
|
ebegin "Setting system clock using the hardware clock [${utc}]"
|
2008-01-04 18:20:04 +05:30
|
|
|
if [ -e /proc/modules -a ! -e /dev/rtc ]; then
|
|
|
|
modprobe -q rtc || modprobe -q genrtc
|
|
|
|
fi
|
2007-10-24 04:19:21 +05:30
|
|
|
|
2008-01-04 18:20:04 +05:30
|
|
|
if [ -e /etc/adjtime ] && yesno ${clock_adjfile}; then
|
2008-01-08 20:28:56 +05:30
|
|
|
_hwclock --adjust ${utc_cmd}
|
|
|
|
retval=$((${retval} + $?))
|
2007-10-24 04:19:21 +05:30
|
|
|
fi
|
2008-01-08 20:28:56 +05:30
|
|
|
|
2008-01-04 18:20:04 +05:30
|
|
|
# If setting UTC, don't bother to run hwclock when first booting
|
|
|
|
# as that's the default
|
2008-01-08 20:28:56 +05:30
|
|
|
if [ "${PREVLEVEL}" != "N" -o \
|
|
|
|
"${utc_cmd}" != "--utc" -o \
|
|
|
|
-n "${clock_args}" ];
|
|
|
|
then
|
|
|
|
_hwclock --hctosys ${utc_cmd} ${clock_args}
|
|
|
|
retval=$((${retval} + $?))
|
2008-01-04 18:20:04 +05:30
|
|
|
fi
|
|
|
|
|
2008-01-08 20:28:56 +05:30
|
|
|
eend ${retval} "Failed to set the system clock"
|
2007-04-05 16:48:42 +05:30
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2008-01-11 17:43:46 +05:30
|
|
|
stop()
|
|
|
|
{
|
2007-04-05 16:48:42 +05:30
|
|
|
# Don't tweak the hardware clock on LiveCD halt.
|
2007-11-24 03:59:18 +05:30
|
|
|
[ -n "${CDBOOT}" ] && return 0
|
|
|
|
yesno ${clock_systohc} || return 0
|
2007-04-05 16:48:42 +05:30
|
|
|
|
2007-12-14 19:42:38 +05:30
|
|
|
local retval=0 errstr=""
|
2007-04-05 16:48:42 +05:30
|
|
|
setupopts
|
|
|
|
|
2008-01-04 18:20:04 +05:30
|
|
|
[ -z "${utc_cmd}" ] && return 0
|
|
|
|
|
2007-12-14 19:42:38 +05:30
|
|
|
ebegin "Setting hardware clock using the system clock" "[${utc}]"
|
2008-01-08 20:28:56 +05:30
|
|
|
|
2008-01-04 18:20:04 +05:30
|
|
|
if ! yesno "${clock_adjfile}"; then
|
|
|
|
# Some implementations don't handle adjustments
|
|
|
|
if LC_ALL=C hwclock --help | grep -q "\-\-noadjfile"; then
|
|
|
|
utc_cmd="${utc_cmd} --noadjfile"
|
2007-10-24 01:30:08 +05:30
|
|
|
fi
|
2007-10-24 04:19:21 +05:30
|
|
|
fi
|
2008-01-08 20:28:56 +05:30
|
|
|
|
|
|
|
_hwclock --systohc ${utc_cmd} ${clock_args}
|
|
|
|
retval=$?
|
|
|
|
|
|
|
|
eend ${retval} "Failed to sync clocks"
|
2007-04-05 16:48:42 +05:30
|
|
|
}
|
|
|
|
|
2008-01-11 17:43:46 +05:30
|
|
|
save()
|
|
|
|
{
|
2007-11-24 03:59:18 +05:30
|
|
|
clock_systohc="yes"
|
2007-04-05 16:48:42 +05:30
|
|
|
stop
|
|
|
|
}
|
|
|
|
|
2008-01-11 17:43:46 +05:30
|
|
|
show()
|
|
|
|
{
|
2007-10-24 12:56:05 +05:30
|
|
|
setupopts
|
2007-12-14 19:42:38 +05:30
|
|
|
hwclock --show "${utc_cmd}" ${clock_args}
|
2007-10-24 12:56:05 +05:30
|
|
|
}
|