-
-
Notifications
You must be signed in to change notification settings - Fork 56
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
chore(deps): update uefi to 0.31.0 #388
chore(deps): update uefi to 0.31.0 #388
Conversation
84aefb9
to
1e1e244
Compare
Thank you so much <3. |
Hmm, it seems CI is saying that it's panicking
|
1e1e244
to
76cf648
Compare
This function is called at the start of main already; it should not be called again in thin/fat `boot_linux`.
A few code changes were needed where the API has changed since 0.29.0: * `uefi::helpers::init` no longer takes an argument. * The `PcrEventInputs::new_in_buffer` API changed. In addition, there is now a `PcrEventInputs::new_in_box` constructor that allocates a correctly-sized buffer. Switch to that constructor.
76cf648
to
386df64
Compare
The issue was multiple calls to |
Hm, now I see the nix-eval job is failing, and clicking through I see errors like this:
I do not understand what that means, or if it's related at all to my changes. |
Thank you for the fix, I will take a look. |
CI passes. |
A few code changes were needed where the API has changed since 0.29.0:
uefi::helpers::init
no longer takes an argument.PcrEventInputs::new_in_buffer
API changed. In addition, there is now aPcrEventInputs::new_in_box
constructor that allocates a correctly-sized buffer. Switch to that constructor.