Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Load shim_certificates.efi during netboot #665

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions shim.c
Original file line number Diff line number Diff line change
Expand Up @@ -1593,10 +1593,13 @@ load_unbundled_trust(EFI_HANDLE image_handle)
/*
* Network boot cases do not support reading a directory. Try
* to read revocations.efi to pull in any unbundled SBATLevel
* updates unconditionally in those cases. This may produce
* console noise when the file is not present.
* updates unconditionally in those cases. Also try to read
* shim_certificate.efi to load additional certificates.
* This may produce console noise when the files are not
* present.
*/
load_cert_file(image_handle, REVOCATIONFILE, PathName);
load_cert_file(image_handle, L"shim_certificate.efi", PathName);
goto done;
}

Expand Down