summaryrefslogtreecommitdiffstats
path: root/builder
diff options
context:
space:
mode:
authorJonathan Bauer2019-08-02 15:59:03 +0200
committerJonathan Bauer2019-08-02 15:59:03 +0200
commitf75c25f18513c57482f70f382f92b4e2831b0c23 (patch)
tree9ab99c92179bf310c371d596940d8e2cb5ca8b4b /builder
parent[slx-dmsetup] auto increase size of rootfs (diff)
downloadsystemd-init-f75c25f18513c57482f70f382f92b4e2831b0c23.tar.gz
systemd-init-f75c25f18513c57482f70f382f92b4e2831b0c23.tar.xz
systemd-init-f75c25f18513c57482f70f382f92b4e2831b0c23.zip
[slx-splash] use PATH, no hardcoded binary path
Diffstat (limited to 'builder')
-rw-r--r--builder/modules.d/slx-splash/scripts/slx-splash.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/builder/modules.d/slx-splash/scripts/slx-splash.sh b/builder/modules.d/slx-splash/scripts/slx-splash.sh
index d435ab7d..7381997b 100644
--- a/builder/modules.d/slx-splash/scripts/slx-splash.sh
+++ b/builder/modules.d/slx-splash/scripts/slx-splash.sh
@@ -2,9 +2,9 @@
show_splash() {
if [ -e "/etc/splash.ppm.gz" ]; then
- /usr/bin/systemd-preserve-process-marker /bin/busybox fbsplash -x -b -s "/etc/splash.ppm.gz" &
+ systemd-preserve-process-marker /bin/busybox fbsplash -x -b -s "/etc/splash.ppm.gz" &
elif [ -e "/etc/splash.ppm" ]; then
- /usr/bin/systemd-preserve-process-marker /bin/busybox fbsplash -x -b -s "/etc/splash.ppm" &
+ systemd-preserve-process-marker /bin/busybox fbsplash -x -b -s "/etc/splash.ppm" &
else
echo "Splash screen requested, but not found in initramfs..."
fi