This converts SERIAL_CONSOLE -> SERIAL_CONSOLES in order to add ttyS2 to the list of terminals that could be a console on intel-corei7 devices The Kernel cmdline is also updated to support ttyS2.
NOTE: that SERIAL_CONSOLES will try to start a getty/login on each device and if the tty device does not exist it may give a warning or error at boot time, this warning/error is OK. Signed-off-by: Saul Wold <[email protected]> --- conf/machine/intel-corei7-64.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conf/machine/intel-corei7-64.conf b/conf/machine/intel-corei7-64.conf index 30d492f..5b7b62b 100644 --- a/conf/machine/intel-corei7-64.conf +++ b/conf/machine/intel-corei7-64.conf @@ -27,7 +27,7 @@ XSERVER ?= "${XSERVER_X86_BASE} \ " SYSLINUX_OPTS = "serial 0 115200" -SERIAL_CONSOLE = "115200 ttyS0" -APPEND += "rootwait console=ttyS0,115200 console=tty0" +SERIAL_CONSOLES = "115200;ttyS0 115200;ttyS2" +APPEND += "rootwait console=ttyS2,115200 console=ttyS0,115200 console=tty0" PACKAGE_INSTALL_append_pn-core-image-minimal-initramfs = " linux-firmware-i915" -- 2.5.5 -- _______________________________________________ meta-intel mailing list [email protected] https://lists.yoctoproject.org/listinfo/meta-intel
