summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Bauer2018-11-12 12:25:31 +0100
committerJonathan Bauer2018-11-12 17:30:33 +0100
commit14fab902dc46a6d514d766acb5d38b876defcbfb (patch)
tree9d07fb628790e4e45527d2660931f4bcb2a4b57a
parent[slx-splash] do not lead dracut into an shell (diff)
downloadsystemd-init-14fab902dc46a6d514d766acb5d38b876defcbfb.tar.gz
systemd-init-14fab902dc46a6d514d766acb5d38b876defcbfb.tar.xz
systemd-init-14fab902dc46a6d514d766acb5d38b876defcbfb.zip
[slx-splash] restore cursor after splashscreen
-rwxr-xr-xbuilder/modules.d/slx-splash/module-setup.sh1
-rw-r--r--builder/modules.d/slx-splash/scripts/restore-cursor.sh11
2 files changed, 12 insertions, 0 deletions
diff --git a/builder/modules.d/slx-splash/module-setup.sh b/builder/modules.d/slx-splash/module-setup.sh
index 6abd06e0..05542269 100755
--- a/builder/modules.d/slx-splash/module-setup.sh
+++ b/builder/modules.d/slx-splash/module-setup.sh
@@ -10,4 +10,5 @@ depends() {
install() {
cp "$moddir/data/splash.ppm.gz" "$initdir/etc/splash.ppm.gz"
inst_hook pre-trigger 10 "$moddir/scripts/slx-splash.sh"
+ inst_hook pre-pivot 20 "$moddir/scripts/restore-cursor.sh"
}
diff --git a/builder/modules.d/slx-splash/scripts/restore-cursor.sh b/builder/modules.d/slx-splash/scripts/restore-cursor.sh
new file mode 100644
index 00000000..4ba9880d
--- /dev/null
+++ b/builder/modules.d/slx-splash/scripts/restore-cursor.sh
@@ -0,0 +1,11 @@
+#!/usr/bin/env bash
+#
+# The console cursor is disabled when starting the splash screen.
+# This will add a drop-in to getty@.service to ensure the cursor
+# is restored when starting gettys.
+
+mkdir -p "$NEWROOT/etc/systemd/system/getty@.service.d/"
+cat <<- EOF > "$NEWROOT/etc/systemd/system/getty@.service.d/restore-cursor.conf"
+ [Service]
+ ExecStartPre=-/usr/bin/env bash -c "echo -en '\033c' > /dev/%I"
+EOF