From 4ce2dd3faaaa502ba5e8da66fda3e35994aca323 Mon Sep 17 00:00:00 2001 From: Jan Setje-Eilers Date: Fri, 16 Aug 2024 15:21:52 -0700 Subject: [PATCH] netboot: process revocations.efi as revocations not shim_certificate Bugfix: In the netboot case revocations.efi files were read, but processed as shim_certificate.efi files which is simply wrong. Signed-off-by: Jan Setje-Eilers --- shim.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shim.c b/shim.c index d040992d2..cf30b3310 100644 --- a/shim.c +++ b/shim.c @@ -1593,11 +1593,11 @@ load_unbundled_trust(EFI_HANDLE image_handle) efi_status); /* * Network boot cases do not support reading a directory. Try - * to read revocations.efi to pull in any unbundled SBATLevel + * to read revocations to pull in any unbundled SBATLevel * updates unconditionally in those cases. This may produce * console noise when the file is not present. */ - load_cert_file(image_handle, REVOCATIONFILE, PathName); + load_revocations_file(image_handle, REVOCATIONFILE, PathName); goto done; }