From e31ad1b58e8dbac2e299bc0cb872c3a82db14717 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Sat, 22 Feb 2020 13:55:25 +0000 Subject: psplash: Fix systemd service dependencies Avoid: qemux86-64 psplash-systemd[135]: Error unable to open fifo by adding the missing dependency on /run/ where the fifo resides. Also, psplash-systemd requires psplash-start, not the other way around as the splash creates the fifo which the other then needs to open. Signed-off-by: Richard Purdie --- meta/recipes-core/psplash/files/psplash-start.service | 2 +- meta/recipes-core/psplash/files/psplash-systemd.service | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/meta/recipes-core/psplash/files/psplash-start.service b/meta/recipes-core/psplash/files/psplash-start.service index 9de8f6321a..af9d5d6c20 100644 --- a/meta/recipes-core/psplash/files/psplash-start.service +++ b/meta/recipes-core/psplash/files/psplash-start.service @@ -1,7 +1,7 @@ [Unit] Description=Start psplash boot splash screen DefaultDependencies=no -Requires=psplash-systemd.service +RequiresMountsFor=/run [Service] ExecStart=/usr/bin/psplash diff --git a/meta/recipes-core/psplash/files/psplash-systemd.service b/meta/recipes-core/psplash/files/psplash-systemd.service index e14f42032d..249aa54039 100644 --- a/meta/recipes-core/psplash/files/psplash-systemd.service +++ b/meta/recipes-core/psplash/files/psplash-systemd.service @@ -2,6 +2,8 @@ Description=Start psplash-systemd progress communication helper DefaultDependencies=no After=systemd-start.service +Requires=psplash-start.service +RequiresMountsFor=/run [Service] ExecStart=/usr/bin/psplash-systemd -- cgit 1.2.3-korg