diff options
Diffstat (limited to 'libre/initscripts/split-hwclock-calls.diff')
-rw-r--r-- | libre/initscripts/split-hwclock-calls.diff | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/libre/initscripts/split-hwclock-calls.diff b/libre/initscripts/split-hwclock-calls.diff deleted file mode 100644 index c0a6a4fd6..000000000 --- a/libre/initscripts/split-hwclock-calls.diff +++ /dev/null @@ -1,21 +0,0 @@ -diff --git a/rc.sysinit b/rc.sysinit -index eb49e2b..8f9727b 100755 ---- a/rc.sysinit -+++ b/rc.sysinit -@@ -34,7 +34,6 @@ bootlogd -p /run/bootlogd.pid - - run_hook sysinit_start - --HWCLOCK_PARAMS="--systz" - case $HARDWARECLOCK in - "") ;; - UTC) HWCLOCK_PARAMS+=" --utc --noadjfile";; -@@ -54,7 +53,7 @@ if [[ $HWCLOCK_PARAMS ]]; then - - [[ $TIMEZONE ]] && export TZ=$TIMEZONE - -- hwclock $HWCLOCK_PARAMS && stat_done || stat_fail -+ { hwclock $HWCLOCK_PARAMS && hwclock --systz; } && stat_done || stat_fail - - unset TZ - fi |