package/psplash: fix systemd unit ordering and dependencies

Fix a typo in the dependencies, and switch the type to 'exec'.
This ensures that the psplash-systemd service will find the
FIFO created by psplash.

Change the psplash-systemd dependency to BindsTo, so stopping
psplash itself will also end this service and free resources.

psplash-start service need to start early, otherwise it might try
to compete/take away the framebuffer from the final graphical
stack. Order it before sysinit.target.

Signed-off-by: Norbert Lange <nolange79@gmail.com>
Signed-off-by: Arnout Vandecappelle <arnout@mind.be>
This commit is contained in:
Norbert Lange 2024-01-16 12:00:02 +01:00 committed by Arnout Vandecappelle
parent 4a1bcbe17e
commit 087115b96a
2 changed files with 4 additions and 2 deletions

View File

@ -2,8 +2,10 @@
Description=Starts Psplash Boot screen
DefaultDependencies=no
RequiresMountsFor=/run
Before=sysinit.target
[Service]
Type=exec
ExecStart=/usr/bin/psplash -n
[Install]

View File

@ -1,8 +1,8 @@
[Unit]
Description=Start psplash-systemd progress communication helper
DefaultDependencies=no
After=systemd-start.service
Requires=psplash-start.service
After=psplash-start.service
BindsTo=psplash-start.service
RequiresMountsFor=/run
[Service]