From fd9b3e0a0ff210f95a384dc884dcf848adcc478f Mon Sep 17 00:00:00 2001 From: Alexandre Bard Date: Thu, 29 Feb 2024 16:07:19 +0100 Subject: [PATCH] fix(netmodule-hw34): fix consoles definitions LINUX_CONSOLE is not used anywhere, but KERNEL_CONSOLE is. SERIAL_CONSOLES was missing and usign the default from included files that included ttyS0 that we don't need. id:502637 --- .../conf/machine/netmodule-hw34.conf | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/layers/meta-netmodule-coreos-bsp/conf/machine/netmodule-hw34.conf b/layers/meta-netmodule-coreos-bsp/conf/machine/netmodule-hw34.conf index e44ddd8..cf6dd7b 100644 --- a/layers/meta-netmodule-coreos-bsp/conf/machine/netmodule-hw34.conf +++ b/layers/meta-netmodule-coreos-bsp/conf/machine/netmodule-hw34.conf @@ -6,7 +6,9 @@ KERNEL_DEVICETREE = " \ UBOOT_MACHINE = "am64x_netmodule_hw34_a53_defconfig" -LINUX_CONSOLE ?= "ttyS2,115200n8" +KERNEL_CONSOLE = "ttyS2" +SERIAL_CONSOLES = "115200;ttyS2" + APPEND += "console=ttyS2,115200"