diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-03-03 09:23:08 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-03-03 13:06:29 +0000 |
commit | 92e172b5b4de8927d36409386dfce0fc2718f5d1 (patch) | |
tree | b0954be09c5eda6ee4114fd4ad414df7dacca5be /meta | |
parent | fa4945100a3218b94f0d02d1949fcb4936ce762f (diff) | |
download | poky-92e172b5b4de8927d36409386dfce0fc2718f5d1.tar.gz |
systemd: Fix service file for race issues
It seems this service needs both Requires: and After: according to the definitions
in the systemd docs, else we see boot race failures.
(From OE-Core rev: d6b1809e8cd7ca78c5b442177393d4299a96ec65)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-core/psplash/files/psplash-systemd.service | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-core/psplash/files/psplash-systemd.service b/meta/recipes-core/psplash/files/psplash-systemd.service index 249aa54039..4e18980bb2 100644 --- a/meta/recipes-core/psplash/files/psplash-systemd.service +++ b/meta/recipes-core/psplash/files/psplash-systemd.service | |||
@@ -2,6 +2,7 @@ | |||
2 | Description=Start psplash-systemd progress communication helper | 2 | Description=Start psplash-systemd progress communication helper |
3 | DefaultDependencies=no | 3 | DefaultDependencies=no |
4 | After=systemd-start.service | 4 | After=systemd-start.service |
5 | After=psplash-start.service | ||
5 | Requires=psplash-start.service | 6 | Requires=psplash-start.service |
6 | RequiresMountsFor=/run | 7 | RequiresMountsFor=/run |
7 | 8 | ||