From 860890d476666397112e0728c818263975a6af5d Mon Sep 17 00:00:00 2001 From: Yogesh Hegde Date: Thu, 23 Apr 2026 11:09:52 +0530 Subject: [PATCH] am62lxx: Override serial console to ttyS0 only The am62lxx SoC default UART is ttyS0 since it doesn't have the R5 cores taking up a UART. The k3 default SERIAL_CONSOLES inherited includes ttyS2, which causes systemd to wait indefinitely for a console that never appears, significantly increasing boot time and degrading user experience. Override SERIAL_CONSOLES to specify only ttyS0, allowing the boot process to proceed normally without waiting for unavailable consoles. Signed-off-by: Yogesh Hegde Signed-off-by: Ryan Eatmon --- meta-ti-bsp/conf/machine/include/am62lxx.inc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta-ti-bsp/conf/machine/include/am62lxx.inc b/meta-ti-bsp/conf/machine/include/am62lxx.inc index 12c8d6ea..26abe479 100644 --- a/meta-ti-bsp/conf/machine/include/am62lxx.inc +++ b/meta-ti-bsp/conf/machine/include/am62lxx.inc @@ -3,6 +3,8 @@ SOC_FAMILY:append = ":am62lxx" MACHINE_FEATURES += "screen" +SERIAL_CONSOLES = "115200;ttyS0" + TFA_BOARD = "am62lx" TFA_K3_SYSTEM_SUSPEND = "1" TFA_PLATFORM = "k3low"