From c2fe3bc187d197c78f47c097a46ca8932f44fc1a Mon Sep 17 00:00:00 2001 From: Seung-Woo Kim Date: Mon, 11 Nov 2019 11:36:50 +0900 Subject: [PATCH] configs: rpi: remove lcd from console output From RPI3, log printing to lcd video console causes slow down of uart rx getc called and fifo overrun occured from uart rx because rpi3 mini uart has small h/w fifo. Remove lcd from console output. It's changed from lcd to videoconsole. Change-Id: I1d96ceab2ee796b4757032400c659fe40ab2f08d Signed-off-by: Seung-Woo Kim Signed-off-by: Jaehoon Chung --- include/configs/rpi.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/configs/rpi.h b/include/configs/rpi.h index e232a69..280b6ec 100644 --- a/include/configs/rpi.h +++ b/include/configs/rpi.h @@ -66,8 +66,8 @@ /* Environment */ #define ENV_DEVICE_SETTINGS \ "stdin=serial,usbkbd\0" \ - "stdout=serial,vidconsole\0" \ - "stderr=serial,vidconsole\0" + "stdout=serial\0" \ + "stderr=serial\0" #ifdef CONFIG_ARM64 #define FDT_HIGH "ffffffffffffffff" -- 2.7.4