aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xrc.sysinit6
1 files changed, 3 insertions, 3 deletions
diff --git a/rc.sysinit b/rc.sysinit
index d8929de..6f1ac9c 100755
--- a/rc.sysinit
+++ b/rc.sysinit
@@ -19,9 +19,6 @@ mkdir -p /dev/{pts,shm}
mountpoint -q /dev/pts || mount -t devpts devpts /dev/pts -o mode=0620,gid=5,nosuid,noexec
mountpoint -q /dev/shm || mount -t tmpfs shm /dev/shm -o mode=1777,nosuid,nodev
-# log all console messages
-bootlogd -p /run/bootlogd.pid
-
if [[ ! -e /run/initramfs/root-fsck ]]; then
# remount root ro to allow for fsck later on, we remount now to
# make sure nothing can open files rw on root which would block a remount
@@ -29,6 +26,9 @@ if [[ ! -e /run/initramfs/root-fsck ]]; then
status "Mounting root read-only" mount -o remount,ro /
fi
+# log all console messages
+bootlogd -p /run/bootlogd.pid
+
run_hook sysinit_start
HWCLOCK_PARAMS="--systz"