From a677778a9f0b1ef8ac2af44bf694898d3f4e5a84 Mon Sep 17 00:00:00 2001 From: Tom Hochstein Date: Fri, 14 Mar 2025 05:30:08 -0700 Subject: imx8qm-mek,imx8qxp-mek: Fix SERIAL_CONSOLES On Walnascar, 8QM and 8QXP MEK fail to boot. One difference in the log compared with Styhead is the getty on ttyAMA0 instead of ttyLP0 and a failure: ``` [ TIME ] Timed out waiting for device /dev/ttyAMA0. ``` It seems SERIAL_CONSOLES for these two boards has been wrong all along but masked until recently: https://git.yoctoproject.org/poky/commit/meta/recipes-core/systemd?id=d1eaffbd6bde845c3fcd81660b694e1ea1f46ab2 Signed-off-by: Tom Hochstein --- conf/machine/imx8qm-mek.conf | 2 +- conf/machine/include/imx8x-mek.inc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/conf/machine/imx8qm-mek.conf b/conf/machine/imx8qm-mek.conf index 47cfde198..648320d89 100644 --- a/conf/machine/imx8qm-mek.conf +++ b/conf/machine/imx8qm-mek.conf @@ -20,7 +20,7 @@ RRECOMMENDS:${KERNEL_PACKAGE_NAME}-base = "" LOADADDR = "" # We have to disable SERIAL_CONSOLE due to auto-serial-console -SERIAL_CONSOLES = "115200;ttyAMA0" +SERIAL_CONSOLES = "115200;ttyLP0" # we do not want to have getty running on tty1 as we run # auto-serial-console there diff --git a/conf/machine/include/imx8x-mek.inc b/conf/machine/include/imx8x-mek.inc index 9eaa77c53..adfcab47f 100644 --- a/conf/machine/include/imx8x-mek.inc +++ b/conf/machine/include/imx8x-mek.inc @@ -12,7 +12,7 @@ RRECOMMENDS:${KERNEL_PACKAGE_NAME}-base = "" LOADADDR = "" # We have to disable SERIAL_CONSOLE due to auto-serial-console -SERIAL_CONSOLES = "115200;ttyAMA0" +SERIAL_CONSOLES = "115200;ttyLP0" # we do not want to have getty running on tty1 as we run # auto-serial-console there -- cgit v1.2.3-54-g00ecf