]> code.ossystems Code Review - openembedded-core.git/commitdiff
initscripts: start bootmisc.sh at 36 instead of 55
authorDavid Vincent <freesilicon@gmail.com>
Mon, 10 Jul 2017 10:45:33 +0000 (12:45 +0200)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 21 Jul 2017 21:45:19 +0000 (22:45 +0100)
bootmisc.sh is responsible for setting the system date to a sane
default. Currently, it is the last script to be run from the rcS
runlevel.

Problem is that the files created before appear to have been created
on 1/1/1970. Most notably, /var/log/dmesg created in dmesg.sh cannot be
properly rotated with logrotate which does not consider it a valid date
and stops processing.

There is no blocker on moving this script right before populating
volatiles because it just requires the local and virtual filesystems to
be mounted to work.

Signed-off-by: David Vincent <freesilicon@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/recipes-core/initscripts/initscripts_1.0.bb

index 2e4f7e46691133269adaa4c4f06918d02ded4f12..a65f1b24a571233c9001a997831b9181045481b6 100644 (file)
@@ -134,7 +134,7 @@ do_install () {
        update-rc.d -r ${D} mountall.sh start 03 S .
        update-rc.d -r ${D} hostname.sh start 39 S .
        update-rc.d -r ${D} mountnfs.sh start 15 2 3 4 5 .
-       update-rc.d -r ${D} bootmisc.sh start 55 S .
+       update-rc.d -r ${D} bootmisc.sh start 36 S .
        update-rc.d -r ${D} sysfs.sh start 02 S .
        update-rc.d -r ${D} populate-volatile.sh start 37 S .
        update-rc.d -r ${D} read-only-rootfs-hook.sh start 29 S .