diff options
author | 2021-10-18 17:30:51 +0500 | |
---|---|---|
committer | 2021-10-18 17:30:51 +0500 | |
commit | 5a1184140c7f2fac9660c9c93a819072a9cb1e79 (patch) | |
tree | 0b367022d047a77ddba154a42944a215a4f616d1 | |
parent | 8e7536921279db8c99a171b1582d5e3616600745 (diff) | |
download | meta-amd-5a1184140c7f2fac9660c9c93a819072a9cb1e79.tar.gz meta-amd-5a1184140c7f2fac9660c9c93a819072a9cb1e79.tar.bz2 meta-amd-5a1184140c7f2fac9660c9c93a819072a9cb1e79.zip |
vermeer: use the LPC-UART serial for kernel console and serial-getty
The vermeer platform's board Qogir does not have an on-board RS232
serial port. But it has an LPC bus header that can be used to connect
an LPC to UART adapter for serial port access. Let's use that as
the kernel console and serial-getty device.
Signed-off-by: Arsalan H. Awan <Arsalan_Awan@mentor.com>
-rw-r--r-- | meta-amd-bsp/conf/machine/vermeer.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-amd-bsp/conf/machine/vermeer.conf b/meta-amd-bsp/conf/machine/vermeer.conf index e7bf88e6..c6628524 100644 --- a/meta-amd-bsp/conf/machine/vermeer.conf +++ b/meta-amd-bsp/conf/machine/vermeer.conf @@ -7,10 +7,10 @@ require conf/machine/include/tune-zen2.inc require conf/machine/include/amdx86.inc # Setup a getty on all serial ports -SERIAL_CONSOLES = "115200;ttyS4 115200;ttyS5" +SERIAL_CONSOLES = "115200;ttyS0" # Enable the kernel console on ttyS4/COM0 -KERNEL_SERIAL_CONSOLE ?= "console=ttyS4,115200n8" +KERNEL_SERIAL_CONSOLE ?= "console=ttyS0,115200n8" # Add screen-console to enable graphical console as well MACHINE_FEATURES_append = " screen-console" |