diff options
-rw-r--r-- | rc.conf | 3 | ||||
-rwxr-xr-x | rc.shutdown | 6 | ||||
-rwxr-xr-x | rc.sysinit | 6 |
3 files changed, 13 insertions, 2 deletions
@@ -5,8 +5,11 @@ # # Localization # +# Note: HARDWARECLOCK is either "UTC" or "localtime" +# KEYMAP=us TIMEZONE=Canada/Pacific +HARDWARECLOCK="localtime" # # Networking diff --git a/rc.shutdown b/rc.shutdown index 4688a6b..a49c18e 100755 --- a/rc.shutdown +++ b/rc.shutdown @@ -44,7 +44,11 @@ stat_busy "Saving Random Seed" stat_done stat_busy "Saving System Clock" -/sbin/hwclock --systohc +if [ $HARDWARECLOCK = "UTC" ]; then + /sbin/hwclock --utc --systohc +else + /sbin/hwclock --localtime --systohc +fi stat_done # Write to wtmp file before unmounting @@ -50,7 +50,11 @@ stat_busy "Mounting Local Filesystems" stat_done stat_busy "Configuring System Clock" -/sbin/hwclock --hctosys +if [ $HARDWARECLOCK = "UTC" ]; then + /sbin/hwclock --utc --hctosys +else + /sbin/hwclock --localtime --hctosys +fi if [ ! -f /etc/adjtime ]; then echo "0.0 0 0.0" > /etc/adjtime fi |