diff options
| author | Gurumoorthy Santhakumar <[email protected]> | 2026-06-03 17:08:53 +0530 |
|---|---|---|
| committer | Casey Connolly <[email protected]> | 2026-06-10 13:36:18 +0200 |
| commit | 757a95c7faae4bdc10dc463c1bb3cf3fee1418a0 (patch) | |
| tree | 31425aaf1c8241fc0fc082929b4917b334149711 | |
| parent | c2019e01d069c398921abdf8f159136f7e550078 (diff) | |
arm: dts: ipq5424-rdp466: add chosen node for serial console
Add a /chosen node with stdout-path pointing to serial0 (uart1) to
enable the DT-driven console discovery path in
serial_find_console_or_panic().
Without this node, the live DT path in serial_find_console_or_panic()
is skipped and the fallback path is used. Adding the /chosen node makes
the console selection explicit and deterministic, ensuring the correct
serial device is always selected as the console.
Signed-off-by: Gurumoorthy Santhakumar <[email protected]>
Link: https://patch.msgid.link/20260603113853.3396271-1-gurumoorthy.santhakumar@oss.qualcomm.com
Signed-off-by: Casey Connolly <[email protected]>
| -rw-r--r-- | arch/arm/dts/ipq5424-rdp466-u-boot.dtsi | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/dts/ipq5424-rdp466-u-boot.dtsi b/arch/arm/dts/ipq5424-rdp466-u-boot.dtsi index 9e4af4d9f72..36640f31d61 100644 --- a/arch/arm/dts/ipq5424-rdp466-u-boot.dtsi +++ b/arch/arm/dts/ipq5424-rdp466-u-boot.dtsi @@ -12,6 +12,9 @@ reg = <0x0 0x80000000 0x0 0x20000000>; }; + chosen { + stdout-path = "serial0:115200n8"; + }; }; &sdhc { |
