diff options
| author | Patrick Delaunay <[email protected]> | 2023-07-10 13:30:59 +0200 |
|---|---|---|
| committer | Patrice Chotard <[email protected]> | 2023-08-16 15:35:55 +0200 |
| commit | 284b08fb51b60255cbedcfe7aa7dcf319450d7e3 (patch) | |
| tree | de836e6378012a6abfd263abb363572e81fd5d77 /include | |
| parent | 61ad1a527a198a3c5ce4cdf25d74108bd038ebb4 (diff) | |
board: stm32mp1: add splash screen with stmicroelectronics logo
Display the STMicroelectronics logo with features VIDEO_LOGO and
SPLASH_SCREEN on STMicroelectronics boards.
With CONFIG_SYS_VENDOR = "st", the logo st.bmp is selected, loaded at the
address indicated by splashimage and centered with "splashpos=m,m".
Signed-off-by: Patrick Delaunay <[email protected]>
Reviewed-by: Patrice Chotard <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/configs/stm32mp15_st_common.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/configs/stm32mp15_st_common.h b/include/configs/stm32mp15_st_common.h index b45982a35b8..60838cb0e3f 100644 --- a/include/configs/stm32mp15_st_common.h +++ b/include/configs/stm32mp15_st_common.h @@ -10,7 +10,9 @@ #define STM32MP_BOARD_EXTRA_ENV \ "usb_pgood_delay=2000\0" \ - "console=ttySTM0\0" + "console=ttySTM0\0" \ + "splashimage=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \ + "splashpos=m,m\0" #include <configs/stm32mp15_common.h> |
