diff options
author | Rebecca Cran <rebecca@bsdio.com> | 2024-11-26 20:56:49 -0700 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2024-11-27 08:28:36 +0000 |
commit | b78b4da1fb7f09622363770638f67229cea8f701 (patch) | |
tree | cc8e1d30e8554b20a7c100e54978f0a7f990262b | |
parent | ae8ab7190cb86b95455328870eb747f50a9bf291 (diff) | |
download | edk2-b78b4da1fb7f09622363770638f67229cea8f701.tar.gz |
ArmPlatformPkg: Allow up to 5 Secure Boot DB certs
Update SecureBootDefaultKeys.fdf.inc to add support for 2 more DB
certificates, for a total of 5. This allows all the files from
https://github.com/microsoft/secureboot_objects/tree/main/PreSignedObjects/DB/Certificates
to be supported.
Signed-off-by: Rebecca Cran <rebecca@bsdio.com>
-rw-r--r-- | ArmPlatformPkg/SecureBootDefaultKeys.fdf.inc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ArmPlatformPkg/SecureBootDefaultKeys.fdf.inc b/ArmPlatformPkg/SecureBootDefaultKeys.fdf.inc index bf4f2d42de..c2cfa0d9d2 100644 --- a/ArmPlatformPkg/SecureBootDefaultKeys.fdf.inc +++ b/ArmPlatformPkg/SecureBootDefaultKeys.fdf.inc @@ -38,6 +38,13 @@ !ifdef $(DB_DEFAULT_FILE3)
SECTION RAW = $(DB_DEFAULT_FILE3)
!endif
+ !ifdef $(DB_DEFAULT_FILE4)
+ SECTION RAW = $(DB_DEFAULT_FILE4)
+ !endif
+ !ifdef $(DB_DEFAULT_FILE5)
+ SECTION RAW = $(DB_DEFAULT_FILE5)
+ !endif
+
SECTION UI = "DB Default"
}
|