From 0b98986fe7a9ed785933cb2ef1af985ca98faf7e Mon Sep 17 00:00:00 2001 From: Bernd Kreuss Date: Fri, 13 Oct 2017 20:52:09 +0200 Subject: [PATCH] colibri-vf: use strong assignment of SERIAL_CONSOLE, fixes #5 SERIAL_CONSOLE would otherwise stay at the default setting as defined in imx-base.inc but this setting would make it try to spawn a getty on a non-existing device on the colibri-vf and login on the UART console would not work. Signed-off-by: Bernd Kreuss --- conf/machine/colibri-vf.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/machine/colibri-vf.conf b/conf/machine/colibri-vf.conf index 0c3ac0c..852902f 100644 --- a/conf/machine/colibri-vf.conf +++ b/conf/machine/colibri-vf.conf @@ -39,6 +39,6 @@ MKUBIFS_ARGS = " -c 8112 -e 124KiB -m 2KiB -F" UBINIZE_ARGS = " -p 128KiB -m 2048 -s 2048" UBI_VOLNAME = "rootfs" -SERIAL_CONSOLE ?= "115200 ttyLP0" +SERIAL_CONSOLE = "115200 ttyLP0" MACHINE_FEATURES += "usbgadget usbhost vfat alsa touchscreen"