diff options
author | Patrice Chotard <patrice.chotard@foss.st.com> | 2025-04-01 15:51:31 +0200 |
---|---|---|
committer | Patrice Chotard <patrice.chotard@foss.st.com> | 2025-05-05 15:51:47 +0200 |
commit | 4664943f0e475b480ef162bb90d879cc907a81c0 (patch) | |
tree | 6f89b9b68757d50f7c232dd654d407e9bfad5027 | |
parent | 7a880cb4ec55c2b6f661c80e480b939c9813ce18 (diff) |
configs: stm32746-eval_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 <patrice.chotard@foss.st.com>
Reviewed-by: Patrick Delaunay <patrick.delaunay@foss.st.com>
-rw-r--r-- | configs/stm32746g-eval_spl_defconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/stm32746g-eval_spl_defconfig b/configs/stm32746g-eval_spl_defconfig index 8a0b1e21fb5..4706a72cb9c 100644 --- a/configs/stm32746g-eval_spl_defconfig +++ b/configs/stm32746g-eval_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="stm32746g-eval" CONFIG_SYS_PBSIZE=1050 # CONFIG_DISPLAY_CPUINFO is not set |