diff options
| author | Patrice Chotard <[email protected]> | 2025-04-01 15:51:27 +0200 |
|---|---|---|
| committer | Patrice Chotard <[email protected]> | 2025-05-05 15:51:47 +0200 |
| commit | 20e24fb8e5dfae7d60c10ac70b9deb31aff548e3 (patch) | |
| tree | d86acc7cb7ad401a704ed8562c16a171dbf4cecd | |
| parent | 20afca89ed53c9e373d4d4f5b9bea847fc47ee20 (diff) | |
configs: stm32f769-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/stm32f769-disco_spl_defconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/stm32f769-disco_spl_defconfig b/configs/stm32f769-disco_spl_defconfig index 2301186573e..93c6c904331 100644 --- a/configs/stm32f769-disco_spl_defconfig +++ b/configs/stm32f769-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="stm32f769-disco" CONFIG_SYS_PBSIZE=1050 # CONFIG_DISPLAY_CPUINFO is not set |
