diff options
author | Tom Hochstein <tom.hochstein@nxp.com> | 2025-03-14 05:30:08 -0700 |
---|---|---|
committer | Rodrigo M. Duarte <rodrigo.duarte@ossystems.com.br> | 2025-04-02 09:18:58 -0300 |
commit | ab5c94e1376936cbbe2009c2e86f9b9be4777bfb (patch) | |
tree | d64a1be8d1abb64a21a16b7c71add76f2316aead | |
parent | 6087dc14deb83491390c1f1edf6f9b26652a396a (diff) | |
download | meta-freescale-ab5c94e1376936cbbe2009c2e86f9b9be4777bfb.tar.gz |
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 <tom.hochstein@nxp.com>
-rw-r--r-- | conf/machine/imx8qm-mek.conf | 2 | ||||
-rw-r--r-- | 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 47cfde19..648320d8 100644 --- a/conf/machine/imx8qm-mek.conf +++ b/conf/machine/imx8qm-mek.conf | |||
@@ -20,7 +20,7 @@ RRECOMMENDS:${KERNEL_PACKAGE_NAME}-base = "" | |||
20 | LOADADDR = "" | 20 | LOADADDR = "" |
21 | 21 | ||
22 | # We have to disable SERIAL_CONSOLE due to auto-serial-console | 22 | # We have to disable SERIAL_CONSOLE due to auto-serial-console |
23 | SERIAL_CONSOLES = "115200;ttyAMA0" | 23 | SERIAL_CONSOLES = "115200;ttyLP0" |
24 | 24 | ||
25 | # we do not want to have getty running on tty1 as we run | 25 | # we do not want to have getty running on tty1 as we run |
26 | # auto-serial-console there | 26 | # auto-serial-console there |
diff --git a/conf/machine/include/imx8x-mek.inc b/conf/machine/include/imx8x-mek.inc index 9eaa77c5..adfcab47 100644 --- a/conf/machine/include/imx8x-mek.inc +++ b/conf/machine/include/imx8x-mek.inc | |||
@@ -12,7 +12,7 @@ RRECOMMENDS:${KERNEL_PACKAGE_NAME}-base = "" | |||
12 | LOADADDR = "" | 12 | LOADADDR = "" |
13 | 13 | ||
14 | # We have to disable SERIAL_CONSOLE due to auto-serial-console | 14 | # We have to disable SERIAL_CONSOLE due to auto-serial-console |
15 | SERIAL_CONSOLES = "115200;ttyAMA0" | 15 | SERIAL_CONSOLES = "115200;ttyLP0" |
16 | 16 | ||
17 | # we do not want to have getty running on tty1 as we run | 17 | # we do not want to have getty running on tty1 as we run |
18 | # auto-serial-console there | 18 | # auto-serial-console there |