42 lines
1.1 KiB
Diff
42 lines
1.1 KiB
Diff
From 8ba56fabc89de0df9613c30c8e9d72513a09b017 Mon Sep 17 00:00:00 2001
|
|
From: Lionel VITTE <lionel.vitte@st.com>
|
|
Date: Thu, 6 Jul 2023 17:38:46 +0200
|
|
Subject: [PATCH] silent_mode
|
|
|
|
---
|
|
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 82a428fe63..1ee1beaae6 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=2000\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 9865ef5843..2542012148 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=2000\0" \
|
|
- "console=ttySTM0\0"
|
|
+ "console=ttySTM0\0" \
|
|
+ "silent=1\0"
|
|
|
|
#include <configs/stm32mp15_common.h>
|
|
|
|
--
|
|
2.25.1
|
|
|