diff options
author | Christopher Larson <chris_larson@mentor.com> | 2018-06-22 02:08:06 +0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-06-27 13:53:28 +0100 |
commit | 31c9b42aaeef3ad66e05e51b8209e87f2a22f091 (patch) | |
tree | 767c6dc9bf16c56c8a0445b2e4e004d151d765e0 | |
parent | c70b70f045a5ccf62b19060f3438b38d9914e9a2 (diff) | |
download | openembedded-core-31c9b42aaeef3ad66e05e51b8209e87f2a22f091.tar.gz openembedded-core-31c9b42aaeef3ad66e05e51b8209e87f2a22f091.tar.bz2 openembedded-core-31c9b42aaeef3ad66e05e51b8209e87f2a22f091.zip |
rng-tools: start earlier in the boot process
Entropy is needed earlier in the boot process in some cases, for example
connman can require it, and rgd doesn't require much, so move it earlier
in the boot process, 03 for sysvinit, and before sysinit for systemd.
Signed-off-by: Christopher Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-support/rng-tools/rng-tools/rngd.service | 3 | ||||
-rw-r--r-- | meta/recipes-support/rng-tools/rng-tools_5.bb | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/meta/recipes-support/rng-tools/rng-tools/rngd.service b/meta/recipes-support/rng-tools/rng-tools/rngd.service index b94ad50209..cb8102442d 100644 --- a/meta/recipes-support/rng-tools/rng-tools/rngd.service +++ b/meta/recipes-support/rng-tools/rng-tools/rngd.service @@ -1,5 +1,8 @@ [Unit] Description=Hardware RNG Entropy Gatherer Daemon +DefaultDependencies=no +After=systemd-udev-settle.service +Before=sysinit.target [Service] ExecStart=@SBINDIR@/rngd -f -r /dev/urandom diff --git a/meta/recipes-support/rng-tools/rng-tools_5.bb b/meta/recipes-support/rng-tools/rng-tools_5.bb index 24d545dc3f..6765667a59 100644 --- a/meta/recipes-support/rng-tools/rng-tools_5.bb +++ b/meta/recipes-support/rng-tools/rng-tools_5.bb @@ -43,6 +43,6 @@ do_install_append() { } INITSCRIPT_NAME = "rng-tools" -INITSCRIPT_PARAMS = "start 30 2 3 4 5 . stop 30 0 6 1 ." +INITSCRIPT_PARAMS = "start 03 2 3 4 5 . stop 30 0 6 1 ." SYSTEMD_SERVICE_${PN} = "rngd.service" |