mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2025-03-01 04:31:30 +00:00
32 lines
969 B
Diff
32 lines
969 B
Diff
From 91f485c24fb55a7e0fcaa627fe71bb2ebd9033d5 Mon Sep 17 00:00:00 2001
|
|
From: Christian Hewitt <christianshewitt@gmail.com>
|
|
Date: Fri, 13 Nov 2020 02:09:36 +0000
|
|
Subject: [PATCH 01/10] 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>
|
|
---
|
|
include/configs/meson64.h | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/include/configs/meson64.h b/include/configs/meson64.h
|
|
index 52cc01f73d..54f995e6fe 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.17.1
|
|
|