soc/mediatek/common: Adjust splash logo bottom margin
Increase the logo_bottom_margin from 100 to 200 in the display_logo configuration if FRAMEBUFFER_SPLASH_TEXT Kconfig is enabled. This adjustment ensures the OEM footer logo and associated splash text are rendered higher on the screen, improving visibility and alignment with updated UX requirements. BUG=None TEST=Boot MediaTek device and verify the splash text is 200px from the screen bottom edge as expected. Change-Id: I490e50e200dfffedf24cb30fe0ca6ea6ae037d3d Signed-off-by: Subrata Banik <subratabanik@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/91383 Reviewed-by: Yidi Lin <yidilin@google.com> Reviewed-by: Kapil Porwal <kapilporwal@google.com> Reviewed-by: Paul Menzel <paulepanter@mailbox.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
f01e11ac5c
commit
f89ac4e6ce
1 changed files with 1 additions and 1 deletions
|
|
@ -90,7 +90,7 @@ static void display_logo(struct panel_description *panel,
|
|||
.panel_orientation = panel->orientation,
|
||||
.halignment = FW_SPLASH_HALIGNMENT_CENTER,
|
||||
.valignment = FW_SPLASH_VALIGNMENT_CENTER,
|
||||
.logo_bottom_margin = 100,
|
||||
.logo_bottom_margin = CONFIG(FRAMEBUFFER_SPLASH_TEXT) ? 200 : 100,
|
||||
};
|
||||
render_logo_to_framebuffer(&config);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue