diff options
author | Michael Opdenacker <michael.opdenacker@bootlin.com> | 2023-05-25 17:05:32 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-05-31 16:53:04 +0100 |
commit | 1975ed8c8de7e27514b1dd1b0ec5fade5c98b39c (patch) | |
tree | 0ad2a86989129365127f1774744822e9df0535b8 /meta/recipes-core | |
parent | beae214a45807ced21c8405a45fec212a4659070 (diff) | |
download | poky-1975ed8c8de7e27514b1dd1b0ec5fade5c98b39c.tar.gz |
psplash: enable fullscreen and disable startup-msg
by setting PACKAGECONFIG entries
- fullscreen wasn't set by default but caused
issues displaying the image (image translated upwards,
white stripe at the bottom)
- startup-msg was set by default but didn't seem
to work, showing a white stripe in the lower half
of the display.
- progress-bar was already enabled, but it can
now be disabled through PACKAGECONFIG.
(From OE-Core rev: 31be4944528c6266eda6e8ab07cdc81a6c906c8b)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Suggested-by: Alexander Kanavin <alex.kanavin@gmail.com>
CC: Tim Orling <ticotimo@gmail.com>
CC: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/psplash/psplash_git.bb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/recipes-core/psplash/psplash_git.bb b/meta/recipes-core/psplash/psplash_git.bb index aecbd2ce46..e590eb978f 100644 --- a/meta/recipes-core/psplash/psplash_git.bb +++ b/meta/recipes-core/psplash/psplash_git.bb | |||
@@ -65,9 +65,12 @@ S = "${WORKDIR}/git" | |||
65 | 65 | ||
66 | inherit autotools pkgconfig update-rc.d update-alternatives systemd | 66 | inherit autotools pkgconfig update-rc.d update-alternatives systemd |
67 | 67 | ||
68 | PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)}" | 68 | PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)} progress-bar fullscreen" |
69 | 69 | ||
70 | PACKAGECONFIG[systemd] = "--with-systemd,--without-systemd,systemd" | 70 | PACKAGECONFIG[systemd] = "--with-systemd,--without-systemd,systemd" |
71 | PACKAGECONFIG[fullscreen] = "--enable-img-fullscreen" | ||
72 | PACKAGECONFIG[startup-msg] = ",--disable-startup-msg" | ||
73 | PACKAGECONFIG[progress-bar] = ",--disable-progress-bar" | ||
71 | 74 | ||
72 | ALTERNATIVE_PRIORITY = "100" | 75 | ALTERNATIVE_PRIORITY = "100" |
73 | ALTERNATIVE_LINK_NAME[psplash] = "${bindir}/psplash" | 76 | ALTERNATIVE_LINK_NAME[psplash] = "${bindir}/psplash" |