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
This commit is contained in:
Alexandre Bard 2024-02-29 16:07:19 +01:00
parent 1929136249
commit fd9b3e0a0f
1 changed files with 3 additions and 1 deletions

View File

@ -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"