From a47c082f323037702a702f3f3adbf02a208f5d35 Mon Sep 17 00:00:00 2001 From: Alifer Moraes Date: Wed, 27 Nov 2024 11:21:19 -0300 Subject: [PATCH] [RND-2329] psplash: Disable startup message The psplash application enables a startup message by default, which creates a white strip on the boot splash image as a background for the message. Variscite's splash image already has a white background, so the white strip goes unnoticed in this case. Disable the startup message to avoid displaying a white strip on the screen. Signed-off-by: Alifer Moraes --- recipes-core/psplash/psplash_git.bbappend | 2 ++ 1 file changed, 2 insertions(+) diff --git a/recipes-core/psplash/psplash_git.bbappend b/recipes-core/psplash/psplash_git.bbappend index c6baacd..fd6f624 100644 --- a/recipes-core/psplash/psplash_git.bbappend +++ b/recipes-core/psplash/psplash_git.bbappend @@ -5,6 +5,8 @@ SRC_URI:append = " \ " SPLASH_IMAGES = "file://psplash-poky.png;outsuffix=default" +CFLAGS:append = " -DPSPLASH_DISABLE_STARTUP_MSG" + do_configure:prepend() { cp ${WORKDIR}/*.png ${S}/base-images }