diff options
| author | Patrice Chotard <[email protected]> | 2025-04-01 15:51:28 +0200 |
|---|---|---|
| committer | Patrice Chotard <[email protected]> | 2025-05-05 15:51:47 +0200 |
| commit | d2ed0c17d7c0d3f162eea78427434ebdb0555bbb (patch) | |
| tree | feee68ea96a65e9b1a5180c23aae03635fbecb5c | |
| parent | 20e24fb8e5dfae7d60c10ac70b9deb31aff548e3 (diff) | |
configs: stm32f746-disco_spl: Fix console cmdline
The Linux cmdline encoded in the defconfig is wrong, the
STM32 USART driver registers as ttySTM0 not ttyS0.
Signed-off-by: Patrice Chotard <[email protected]>
Reviewed-by: Patrick Delaunay <[email protected]>
| -rw-r--r-- | configs/stm32f746-disco_spl_defconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/stm32f746-disco_spl_defconfig b/configs/stm32f746-disco_spl_defconfig index 8a8f506959b..f1761e50ad9 100644 --- a/configs/stm32f746-disco_spl_defconfig +++ b/configs/stm32f746-disco_spl_defconfig @@ -27,7 +27,7 @@ CONFIG_AUTOBOOT_KEYED=y CONFIG_AUTOBOOT_PROMPT="Hit SPACE in %d seconds to stop autoboot.\n" CONFIG_AUTOBOOT_STOP_STR=" " CONFIG_USE_BOOTARGS=y -CONFIG_BOOTARGS="console=ttyS0,115200 earlyprintk consoleblank=0 ignore_loglevel" +CONFIG_BOOTARGS="console=ttySTM0,115200 earlyprintk consoleblank=0 ignore_loglevel" CONFIG_DEFAULT_FDT_FILE="stm32f746-disco" CONFIG_SYS_PBSIZE=1050 # CONFIG_DISPLAY_CPUINFO is not set |
