mirror of
https://git.yoctoproject.org/meta-arm
synced 2026-06-04 02:00:12 +00:00
arm-bsp/edk2-firmware: remove 202408
Nothing in meta-arm-bsp is using this version anymore. Drop it and the related patches. Signed-off-by: Jon Mason <jon.mason@arm.com>
This commit is contained in:
@@ -1,12 +0,0 @@
|
||||
require recipes-bsp/uefi/edk2-firmware.inc
|
||||
|
||||
SRCREV_edk2 ?= "b158dad150bf02879668f72ce306445250838201"
|
||||
SRCREV_edk2-platforms ?= "a3c898956a4d48dc5980336fa6ce6eeb23c4f72b"
|
||||
|
||||
SRC_URI += "file://0001-Platform-StMmRpmb-Fix-build.patch;patchdir=edk2-platforms \
|
||||
file://0001-BaseTools-Pccts-set-C-standard.patch"
|
||||
|
||||
# FIXME:
|
||||
# ArmPkg/Universal/Smbios/SmbiosMiscDxe/Type03/MiscChassisManufacturerFunction.c:146:37:
|
||||
# error: variable 'ContainedElements' is uninitialized when passed as a const pointer argument here [-Werror,-Wuninitialized-const-pointer]
|
||||
TOOLCHAIN:aarch64 = "gcc"
|
||||
@@ -1,47 +0,0 @@
|
||||
From e063f8b8a53861043b9872cc35b08a3dc03b0942 Mon Sep 17 00:00:00 2001
|
||||
From: Gerd Hoffmann <kraxel@redhat.com>
|
||||
Date: Mon, 20 Jan 2025 09:40:31 +0100
|
||||
Subject: [PATCH] BaseTools/Pccts: set C standard
|
||||
|
||||
The prehistoric code base doesn't build with ISO C23. Set the C
|
||||
standard to C11 (for both clang and gcc) so it continues to build with
|
||||
gcc 15 (which uses C23 by default).
|
||||
|
||||
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
|
||||
|
||||
Upstream-Status: Backport [e063f8b8a53861043b9872cc35b08a3dc03b0942]
|
||||
Signed-off-by: Ross Burton <ross.burton@arm.com>
|
||||
---
|
||||
BaseTools/Source/C/VfrCompile/Pccts/antlr/makefile | 2 +-
|
||||
BaseTools/Source/C/VfrCompile/Pccts/dlg/makefile | 2 +-
|
||||
2 files changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/BaseTools/Source/C/VfrCompile/Pccts/antlr/makefile b/BaseTools/Source/C/VfrCompile/Pccts/antlr/makefile
|
||||
index 746d58b5e2..b47c8a37af 100644
|
||||
--- a/BaseTools/Source/C/VfrCompile/Pccts/antlr/makefile
|
||||
+++ b/BaseTools/Source/C/VfrCompile/Pccts/antlr/makefile
|
||||
@@ -169,7 +169,7 @@ ANTLR=${BIN_DIR}/antlr
|
||||
DLG=${BIN_DIR}/dlg
|
||||
OBJ_EXT=o
|
||||
OUT_OBJ = -o
|
||||
-CFLAGS= $(COPT) -I. -I$(SET) -I$(PCCTS_H) -DUSER_ZZSYN $(COTHER) -DZZLEXBUFSIZE=65536
|
||||
+CFLAGS= $(COPT) -I. -I$(SET) -I$(PCCTS_H) -DUSER_ZZSYN $(COTHER) -DZZLEXBUFSIZE=65536 -std=gnu11
|
||||
CPPFLAGS=
|
||||
#
|
||||
# SGI Users, use this CFLAGS
|
||||
diff --git a/BaseTools/Source/C/VfrCompile/Pccts/dlg/makefile b/BaseTools/Source/C/VfrCompile/Pccts/dlg/makefile
|
||||
index e45ac98e04..d72bee3d70 100644
|
||||
--- a/BaseTools/Source/C/VfrCompile/Pccts/dlg/makefile
|
||||
+++ b/BaseTools/Source/C/VfrCompile/Pccts/dlg/makefile
|
||||
@@ -123,7 +123,7 @@ endif
|
||||
COPT=-O
|
||||
ANTLR=${BIN_DIR}/antlr
|
||||
DLG=${BIN_DIR}/dlg
|
||||
-CFLAGS= $(COPT) -I. -I$(SET) -I$(PCCTS_H) -DUSER_ZZSYN -DZZLEXBUFSIZE=65536
|
||||
+CFLAGS= $(COPT) -I. -I$(SET) -I$(PCCTS_H) -DUSER_ZZSYN -DZZLEXBUFSIZE=65536 -std=gnu11
|
||||
CPPFLAGS=
|
||||
OBJ_EXT=o
|
||||
OUT_OBJ = -o
|
||||
--
|
||||
2.43.0
|
||||
|
||||
@@ -1,38 +0,0 @@
|
||||
From ee185eda7b7ec9a0c82827fea197fbb73d971f93 Mon Sep 17 00:00:00 2001
|
||||
From: Ard Biesheuvel <ardb@kernel.org>
|
||||
Date: Thu, 29 Aug 2024 21:21:50 +0200
|
||||
Subject: [PATCH] Platform/StMmRpmb: Fix build
|
||||
|
||||
Add some missing library class resolutions relating to changes in the
|
||||
core upstream EDK2 repo.
|
||||
|
||||
Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
|
||||
Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
|
||||
---
|
||||
.../PlatformStandaloneMmPkg/PlatformStandaloneMmRpmb.dsc | 3 +++
|
||||
1 file changed, 3 insertions(+)
|
||||
|
||||
Upstream-Status: Backport
|
||||
|
||||
diff --git a/Platform/StandaloneMm/PlatformStandaloneMmPkg/PlatformStandaloneMmRpmb.dsc b/Platform/StandaloneMm/PlatformStandaloneMmPkg/PlatformStandaloneMmRpmb.dsc
|
||||
index 653029c52f..54c7a63b41 100644
|
||||
--- a/Platform/StandaloneMm/PlatformStandaloneMmPkg/PlatformStandaloneMmRpmb.dsc
|
||||
+++ b/Platform/StandaloneMm/PlatformStandaloneMmPkg/PlatformStandaloneMmRpmb.dsc
|
||||
@@ -41,11 +41,14 @@
|
||||
ExtractGuidedSectionLib|EmbeddedPkg/Library/PrePiExtractGuidedSectionLib/PrePiExtractGuidedSectionLib.inf
|
||||
FvLib|StandaloneMmPkg/Library/FvLib/FvLib.inf
|
||||
HobLib|StandaloneMmPkg/Library/StandaloneMmCoreHobLib/StandaloneMmCoreHobLib.inf
|
||||
+ HobPrintLib|MdeModulePkg/Library/HobPrintLib/HobPrintLib.inf
|
||||
+ ImagePropertiesRecordLib|MdeModulePkg/Library/ImagePropertiesRecordLib/ImagePropertiesRecordLib.inf
|
||||
IoLib|MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsic.inf
|
||||
NULL|MdePkg/Library/BaseStackCheckLib/BaseStackCheckLib.inf
|
||||
MemLib|StandaloneMmPkg/Library/StandaloneMmMemLib/StandaloneMmMemLib.inf
|
||||
MemoryAllocationLib|StandaloneMmPkg/Library/StandaloneMmCoreMemoryAllocationLib/StandaloneMmCoreMemoryAllocationLib.inf
|
||||
PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
|
||||
+ PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf
|
||||
PeCoffLib|MdePkg/Library/BasePeCoffLib/BasePeCoffLib.inf
|
||||
PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf
|
||||
VariablePolicyLib|MdeModulePkg/Library/VariablePolicyLib/VariablePolicyLib.inf
|
||||
--
|
||||
2.43.0
|
||||
|
||||
Reference in New Issue
Block a user