2023-09-16 11:36 PM
Hi,
Appreciate any help on how to enable u-boot splash screen during boot. I am using STM32MP157F-DK2.
Thank you.
2023-09-20 09:05 AM
Hello @MFR ,
The uboot splash screen is enabled by default when you generate image by yocto. if your question is about the customization of the splash screen, you need to update the recipe meta-st-stm32mp/recipes-bsp/u-boot/u-boot-stm32mp-splash_2018.bb and add your images in the directory layers/meta-st/meta-st-stm32mp/recipes-bsp/u-boot/u-boot-stm32mp-splash. So, you can customize it as follow:
FILESEXTRAPATHS:prepend := "${THISDIR}/u-boot-stm32mp:"
SRC_URI = "file://${UBOOT_SPLASH_LANDSCAPE_SRC} \
file://${UBOOT_SPLASH_PORTRAIT_SRC}"
UBOOT_SPLASH_LANDSCAPE_src="your_logo_l_rgb_rle8_480x183.bmp"
UBOOT_SPLASH_PORTRAIT_src="your_logo_p_rgb_rle8_480x183.bmp"