From fe2f73291a32fb8d26140bebbafe4473a998f4f7 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 882878402a..1ff6360dc2 100644 --- a/include/configs/rpi.h +++ b/include/configs/rpi.h @@ -97,8 +97,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.34.1