-
-
Notifications
You must be signed in to change notification settings - Fork 170
Deprecate uefi-services
and add uefi::helpers
as replacement
#1128
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
Merged
nicholasbishop
merged 7 commits into
rust-osdev:main
from
phip1611:remove-uefi-services
Apr 14, 2024
Merged
Deprecate uefi-services
and add uefi::helpers
as replacement
#1128
nicholasbishop
merged 7 commits into
rust-osdev:main
from
phip1611:remove-uefi-services
Apr 14, 2024
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6ec25e5
to
1829dca
Compare
b5625fb
to
c21e56b
Compare
uefi-services
and add uefi::helpers
as replacement
c77cf23
to
2e45e42
Compare
2e45e42
to
905baa6
Compare
uefi_services::init temporarily stays API compatible to prevent breaking changes. But we've added deprecation warnings. The new uefi::helpers module consists mostly of an unchanged code import. Only minor adjustments were applied. Cleanup will happen in a follow-up.
Note that even without these changes, everything works. This proves that we stay API compatible for the next uefi-services release.
I didn't change anything about the implementations, just moved the existing code into the corresponding modules.
9ef222d
to
19629e3
Compare
I've taken care of all your comments. Please re-review. |
No need for the complicated and error-prone approach using an event.
19629e3
to
9a257a0
Compare
nicholasbishop
approved these changes
Apr 14, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
As discussed in #563, we deprecated uefi-services and move it to a new
uefi::helpers
module.uefi-services
is marked as deprecateduefi_services::init
forwards touefi::helpers::init
(drop-in replacement!)uefi::helpers::init
now takes care of everythingHints for Reviewers
uefi_services::init
touefi::helpers::init
works, I'm suggesting to temporarily revertuefi-test-runner: use new uefi::helpers module
- or you can just trust me. :)Checklist