U-BOOT-STM32MP: v2021.10-stm32mp-r2.1
Change-Id: Id9cf1a6fd54d1ceb8d60eaba50dde5de86a7ba49 Signed-off-by: Lionel VITTE <lionel.vitte@st.com>
This commit is contained in:
parent
4bea9587c1
commit
b0bb59f9c2
|
|
@ -25,6 +25,7 @@ SRC_URI += "\
|
|||
file://0007-ARM-v2021.10-stm32mp-r2-BOARD.patch \
|
||||
file://0008-ARM-v2021.10-stm32mp-r2-MISC-DRIVERS.patch \
|
||||
file://0009-ARM-v2021.10-stm32mp-r2-DEVICETREE.patch \
|
||||
file://0010-ARM-v2021.10-stm32mp-r2.1.patch \
|
||||
\
|
||||
file://0099-Add-external-var-to-allow-build-of-new-devicetree-fi.patch \
|
||||
"
|
||||
|
|
@ -34,7 +35,7 @@ SRC_URI += "${@bb.utils.contains('ST_UBOOT_DEBUG_TRACE', '1', '', 'file://0098-s
|
|||
|
||||
U_BOOT_VERSION = "v2021.10"
|
||||
U_BOOT_SUBVERSION = "stm32mp"
|
||||
U_BOOT_RELEASE = "r2"
|
||||
U_BOOT_RELEASE = "r2.1"
|
||||
|
||||
PV = "${U_BOOT_VERSION}-${U_BOOT_SUBVERSION}-${U_BOOT_RELEASE}"
|
||||
|
||||
|
|
@ -51,7 +52,7 @@ S = "${WORKDIR}/git"
|
|||
BBCLASSEXTEND = "devupstream:target"
|
||||
|
||||
SRC_URI:class-devupstream = "git://github.com/STMicroelectronics/u-boot.git;protocol=https;branch=${ARCHIVER_ST_BRANCH}"
|
||||
SRCREV:class-devupstream = "3984366f6997c680b8c6ccc82d50e77a6e1cccf2"
|
||||
SRCREV:class-devupstream = "d1bbf3f7edb786fe854034810355e750b08a9851"
|
||||
|
||||
# ---------------------------------
|
||||
# Configure default preference to manage dynamic selection between tarball and github
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
|
|
@ -1,22 +1,21 @@
|
|||
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
|
||||
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
|
||||
|
||||
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
|
||||
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=1000\0" \
|
||||
"usb_pgood_delay=2000\0" \
|
||||
- "console=ttySTM0\0"
|
||||
+ "console=ttySTM0\0" \
|
||||
+ "silent=1\0"
|
||||
|
|
@ -24,13 +23,13 @@ index 41681537a2..49d3398663 100644
|
|||
#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
|
||||
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=1000\0" \
|
||||
"usb_pgood_delay=2000\0" \
|
||||
- "console=ttySTM0\0"
|
||||
+ "console=ttySTM0\0" \
|
||||
+ "silent=1\0"
|
||||
|
|
|
|||
Loading…
Reference in New Issue