diff options
author | Ard Biesheuvel <ardb@kernel.org> | 2024-11-26 18:18:55 +0100 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2024-11-26 22:00:36 +0000 |
commit | a25eb7557f3c37d015f498c21a804aae52a9cbfd (patch) | |
tree | aabb46fd14802494b0cf5fef08c216731777e045 | |
parent | 6f0e977165cfd5dc3bb29d64ecad49d9f43153a9 (diff) | |
download | edk2-a25eb7557f3c37d015f498c21a804aae52a9cbfd.tar.gz |
SignedCapsulePkg: Drop ARM support
ARM requires softfloat routines when incorporating OpenSSL, which is a
bit of a hassle for no benefit, given that ARM is mostly obsolete at
this point.
SignedCapsulePkg relies on OpenSSL for authentication, and while it
might be feasible to migrate ARM to MbedTLS and retain support, let's
just drop support entirely.
Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
-rw-r--r-- | SignedCapsulePkg/SignedCapsulePkg.dsc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SignedCapsulePkg/SignedCapsulePkg.dsc b/SignedCapsulePkg/SignedCapsulePkg.dsc index 99f78f8a62..b38fd2da15 100644 --- a/SignedCapsulePkg/SignedCapsulePkg.dsc +++ b/SignedCapsulePkg/SignedCapsulePkg.dsc @@ -13,7 +13,7 @@ PLATFORM_VERSION = 0.96
DSC_SPECIFICATION = 0x00010005
OUTPUT_DIRECTORY = Build/SignedCapsulePkg
- SUPPORTED_ARCHITECTURES = AARCH64|ARM|IA32|X64
+ SUPPORTED_ARCHITECTURES = AARCH64|IA32|X64
BUILD_TARGETS = DEBUG|RELEASE|NOOPT
SKUID_IDENTIFIER = DEFAULT
|