summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/psplash
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2020-02-22 13:55:25 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-02-25 10:41:22 +0000
commit950615f34df2e3ff3134c4d3b4b5fbc67d989214 (patch)
treeb75edf20aabe53958f929076f20d8f9a5ed0f7c6 /meta/recipes-core/psplash
parent9ae26cfeea354039c1bdb42fb7289be55115681d (diff)
downloadpoky-950615f34df2e3ff3134c4d3b4b5fbc67d989214.tar.gz
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. (From OE-Core rev: e31ad1b58e8dbac2e299bc0cb872c3a82db14717) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/psplash')
-rw-r--r--meta/recipes-core/psplash/files/psplash-start.service2
-rw-r--r--meta/recipes-core/psplash/files/psplash-systemd.service2
2 files changed, 3 insertions, 1 deletions
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 @@
1[Unit] 1[Unit]
2Description=Start psplash boot splash screen 2Description=Start psplash boot splash screen
3DefaultDependencies=no 3DefaultDependencies=no
4Requires=psplash-systemd.service 4RequiresMountsFor=/run
5 5
6[Service] 6[Service]
7ExecStart=/usr/bin/psplash 7ExecStart=/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 @@
2Description=Start psplash-systemd progress communication helper 2Description=Start psplash-systemd progress communication helper
3DefaultDependencies=no 3DefaultDependencies=no
4After=systemd-start.service 4After=systemd-start.service
5Requires=psplash-start.service
6RequiresMountsFor=/run
5 7
6[Service] 8[Service]
7ExecStart=/usr/bin/psplash-systemd 9ExecStart=/usr/bin/psplash-systemd