mirror of
https://git.yoctoproject.org/poky
synced 2026-04-30 03:32:12 +02:00
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>
This commit is contained in:
committed by
Richard Purdie
parent
beae214a45
commit
1975ed8c8d
@@ -65,9 +65,12 @@ S = "${WORKDIR}/git"
|
||||
|
||||
inherit autotools pkgconfig update-rc.d update-alternatives systemd
|
||||
|
||||
PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)}"
|
||||
PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)} progress-bar fullscreen"
|
||||
|
||||
PACKAGECONFIG[systemd] = "--with-systemd,--without-systemd,systemd"
|
||||
PACKAGECONFIG[fullscreen] = "--enable-img-fullscreen"
|
||||
PACKAGECONFIG[startup-msg] = ",--disable-startup-msg"
|
||||
PACKAGECONFIG[progress-bar] = ",--disable-progress-bar"
|
||||
|
||||
ALTERNATIVE_PRIORITY = "100"
|
||||
ALTERNATIVE_LINK_NAME[psplash] = "${bindir}/psplash"
|
||||
|
||||
Reference in New Issue
Block a user