From 89801f3fd21e4d9a923c2cc831e4372d7f3d98d3 Mon Sep 17 00:00:00 2001 From: Tadao Tanikawa Date: Fri, 11 Dec 2015 17:05:20 +0900 Subject: [PATCH] Disable blinking cursor when booting with fb console When running on QEMU or VM, blinking cursor of console corrupt screen. To fix this, it is stopped just before psplash launched. Change-Id: I6e3cc49a6b65f3c70c246f315314710bd090ce13 Signed-off-by: Tadao Tanikawa --- meta-agl/recipes-core/psplash/files/psplash-start.service | 1 + 1 file changed, 1 insertion(+) diff --git a/meta-agl/recipes-core/psplash/files/psplash-start.service b/meta-agl/recipes-core/psplash/files/psplash-start.service index 7881e73cc..7bad9593e 100644 --- a/meta-agl/recipes-core/psplash/files/psplash-start.service +++ b/meta-agl/recipes-core/psplash/files/psplash-start.service @@ -5,6 +5,7 @@ After=systemd-vconsole-setup.service systemd-udev-trigger.service systemd-udevd. DefaultDependencies=no [Service] +ExecStartPre=/bin/sh -c "if [ -e /sys/class/graphics/fbcon/cursor_blink ]; then echo 0 > /sys/class/graphics/fbcon/cursor_blink; fi" ExecStart=/usr/bin/psplash -n [Install] -- 2.16.6