43 lines
1.2 KiB
Diff
43 lines
1.2 KiB
Diff
From 9538ad0348aef5f00cd0a6858873d5ffac2e287f Mon Sep 17 00:00:00 2001
|
|
From: Christophe Priouzeau <christophe.priouzeau@foss.st.com>
|
|
Date: Wed, 28 Sep 2022 10:52:51 +0200
|
|
Subject: [PATCH] silent_mode
|
|
|
|
Signed-off-by: Christophe Priouzeau <christophe.priouzeau@foss.st.com>
|
|
---
|
|
include/configs/stm32mp13_st_common.h | 3 ++-
|
|
include/configs/stm32mp15_st_common.h | 3 ++-
|
|
2 files changed, 4 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/include/configs/stm32mp13_st_common.h b/include/configs/stm32mp13_st_common.h
|
|
index 41681537a2..49d3398663 100644
|
|
--- a/include/configs/stm32mp13_st_common.h
|
|
+++ b/include/configs/stm32mp13_st_common.h
|
|
@@ -10,7 +10,8 @@
|
|
|
|
#define STM32MP_BOARD_EXTRA_ENV \
|
|
"usb_pgood_delay=1000\0" \
|
|
- "console=ttySTM0\0"
|
|
+ "console=ttySTM0\0" \
|
|
+ "silent=1\0"
|
|
|
|
#include <configs/stm32mp13_common.h>
|
|
|
|
diff --git a/include/configs/stm32mp15_st_common.h b/include/configs/stm32mp15_st_common.h
|
|
index c395f7f986..81865b24ea 100644
|
|
--- a/include/configs/stm32mp15_st_common.h
|
|
+++ b/include/configs/stm32mp15_st_common.h
|
|
@@ -10,7 +10,8 @@
|
|
|
|
#define STM32MP_BOARD_EXTRA_ENV \
|
|
"usb_pgood_delay=1000\0" \
|
|
- "console=ttySTM0\0"
|
|
+ "console=ttySTM0\0" \
|
|
+ "silent=1\0"
|
|
|
|
#include <configs/stm32mp15_common.h>
|
|
|
|
--
|
|
2.25.1
|
|
|