8000 This Month in Rust OSDev: June 2022 by phil-opp · Pull Request #104 · rust-osdev/homepage · GitHub
[go: up one dir, main page]

Skip to content

This Month in Rust OSDev: June 2022 #104

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
merged 21 commits into from
Jul 10, 2022
Merged
Changes from 2 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
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
24 changes: 24 additions & 0 deletions content/this-month/2022-06/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,30 @@ of multiboot2 bootloaders. The latest release of the `multiboot2`-crate is now `
relied on having not to verify UTF-8 strings. For a full changelog, please refer to the
[GitHub repo](https://github.com/rust-osdev/multiboot2/blob/main/multiboot2/Changelog.md).

### [`uefi-rs`](https://github.com/rust-osdev/uefi-rs)

<span class="maintainers">Maintained by [@GabrielMajeri](https://github.com/GabrielMajeri) and [@nicholasbishop](https://github.com/nicholasbishop)</span>

The `uefi` crate provides safe and performant wrappers for [UEFI](https://en.wikipedia.org/wiki/Unified_Extensible_Firmware_Interface), the successor to the BIOS.

We merged the following changes in June:

#### Fixes

- [Remove `exts::allocate_buffer`](https://github.com/rust-osdev/uefi-rs/pull/443)
- [Fix incorrect pointer cast in get_rng](https://github.com/rust-osdev/uefi-rs/pull/447)

#### Improvements

- [Remove unused `From<ucs2::Error>` impls](https://github.com/rust-osdev/uefi-rs/pull/450)
- [Remove `eh_personality` lang item](https://github.com/rust-osdev/uefi-rs/pull/451)
- [Simplify `uefi-services` panic handler](https://github.com/rust-osdev/uefi-rs/pull/453)

#### Internal changes

- [Fix `query_variable_info` test](https://github.com/rust-osdev/uefi-rs/pull/442)
- [Fix errors due to deprecations in the `clap` API](https://github.com/rust-osdev/uefi-rs/pull/445)

## Call for Participation

Want to contribute to a Rust OSDev project, but don't know where to start? Pick up one of these outstanding
Expand Down
0