From f787d690c64550e9b4e1cebb19298e4fd89176d5 Mon Sep 17 00:00:00 2001
From: Christian Hewitt <christianshewitt@gmail.com>
Date: Fri, 13 Nov 2020 02:09:36 +0000
Subject: [CHEWITT] HACK: configs: meson64: prevent stdout/stderr on
 videoconsole

Several devices have CONFIG_DM_VIDEO enabled which causes stdout/stderr
to appear on videoconsole, so remove videoconsole from STDOUT so that
early u-boot boot remains silent unless using the uart/serial console.

Signed-off-by: Christian Hewitt <christianshewitt@gmail.com>

diff --git a/include/configs/meson64.h b/include/configs/meson64.h
index 17ebccd2c4..6224722941 100644
--- a/include/configs/meson64.h
+++ b/include/configs/meson64.h
@@ -18,7 +18,7 @@
 
 /* For splashscreen */
 #ifdef CONFIG_DM_VIDEO
-#define STDOUT_CFG "vidconsole,serial"
+#define STDOUT_CFG "serial"
 #else
 #define STDOUT_CFG "serial"
 #endif
-- 
2.33.0

