From 549787ce597908c944dc489050c990255eb2d51c Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Sun, 5 Jun 2022 14:38:05 +0200 Subject: [PATCH 1/8] Add draft for May release --- content/this-month/2022-05/index.md | 76 +++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 content/this-month/2022-05/index.md diff --git a/content/this-month/2022-05/index.md b/content/this-month/2022-05/index.md new file mode 100644 index 00000000..694d2e79 --- /dev/null +++ b/content/this-month/2022-05/index.md @@ -0,0 +1,76 @@ ++++ +title = "This Month in Rust OSDev: May 2022" +date = 0000-01-01 + +[extra] +month = "May 2022" +authors = [ + "phil-opp", + # add yourself here +] ++++ + +Welcome to a new issue of _"This Month in Rust OSDev"_. In these posts, we give a regular overview of notable changes in the Rust operating system development ecosystem. + + + +This series is openly developed [on GitHub](https://github.com/rust-osdev/homepage/). Feel free to open pull requests there with content you would like to see in the next issue. If you find some issues on this page, please report them by [creating an issue](https://github.com/rust-osdev/homepage/issues/new) or using our [_comment form_](#comment-form) at the bottom of this page. + + + +## Project Updates + +In this section, we give an overview of notable changes to the projects hosted under the [`rust-osdev`] organization. + +[`rust-osdev`]: https://github.com/rust-osdev/about + +### [`x86_64`](https://github.com/rust-osdev/x86_64) + +Maintained by [@phil-opp](https://github.com/phil-opp), [@josephlr](https://github.com/orgs/rust-osdev/people/josephlr), [@Freax13](https://github.com/orgs/rust-osdev/people/Freax13), and [@rybot666](https://github.com/orgs/rust-osdev/people/rybot666) + +The `x86_64` crate provides various abstractions for `x86_64` systems, including wrappers for CPU instructions, access to processor-specific registers, and abstraction types for architecture-specific structures such as page tables and descriptor tables. + +In May, … + +## Call for Participation + +Want to contribute to a Rust OSDev project, but don't know where to start? Pick up one of these outstanding +issues in one of our projects and get started! + + + + + +_No tasks were proposed for this section._ + + + +If you maintain a Rust project related to operating system development and are looking for contributors, especially for tasks suited to people getting started in this space, please [create a PR](https://github.com/rust-osdev/homepage/pulls) against the `next` branch with the tasks you want to include in the next issue. + +## Other Projects + +In this section, we describe updates to Rust OS projects that are not directly related to the `rust-osdev` organization. Feel free to [create a pull request](https://github.com/rust-osdev/homepage/pulls) with the updates of your OS project for the next post. + +### [`phil-opp/blog_os`](https://github.com/phil-opp/blog_os) + +(Section written by [@phil-opp](https://github.com/phil-opp)) + +This month, ... + +## Join Us? + +Are you interested in Rust-based operating system development? Our `rust-osdev` organization is always open to new members and new projects. Just let us know if you want to join! A good way for getting in touch is our [gitter channel](https://gitter.im/rust-osdev/Lobby). + + + From b8d61f3616d7c10e2093a09ec4635643d8fd5636 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Mon, 6 Jun 2022 14:45:38 +0200 Subject: [PATCH 2/8] Add `xhci` updates --- content/this-month/2022-05/index.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/content/this-month/2022-05/index.md b/content/this-month/2022-05/index.md index 694d2e79..c57dbc2a 100644 --- a/content/this-month/2022-05/index.md +++ b/content/this-month/2022-05/index.md @@ -38,6 +38,18 @@ The `x86_64` crate provides various abstractions for `x86_64` systems, including In May, … +### [`xhci`](https://github.com/rust-osdev/xhci) + +Maintained by [@toku-sa-n](https://github.com/toku-sa-n) + +The `xhci` crate provides types of xHCI structires, such as Registers and TRBs. + +We merged the following fix this month: + +- [fix(StructuralParameters2): Bit range in `max_scratchpad_buffers_hi`](https://github.com/rust-osdev/xhci/pull/134) ([published](https://github.com/rust-osdev/xhci/pull/135) as `v0.8.4`) + +Thanks to [@Yuna-Tomi](https://github.com/Yuna-Tomi) for this contribution! + ## Call for Participation Want to contribute to a Rust OSDev project, but don't know where to start? Pick up one of these outstanding From fa53bb78e3d1d566d4d5ef9ca24b87273aee4641 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Mon, 6 Jun 2022 14:51:31 +0200 Subject: [PATCH 3/8] Add `pci_types` changes --- content/this-month/2022-05/index.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/content/this-month/2022-05/index.md b/content/this-month/2022-05/index.md index c57dbc2a..3aeeb654 100644 --- a/content/this-month/2022-05/index.md +++ b/content/this-month/2022-05/index.md @@ -38,6 +38,17 @@ The `x86_64` crate provides various abstractions for `x86_64` systems, including In May, … +### [`pci_types`](https://github.com/rust-osdev/pci_types) + +The `pci_types` library provides types for accessing and configuring PCI devices from Rust operating systems. Lots of this code (e.g. identifying devices by class codes) can be shared +between projects, and would benefit from community contributions. + +We merged the following change in May: + +- [PCI capabilities and status register support](https://github.com/rust-osdev/pci_types/pull/3) + +Thanks to [@alesharik](https://github.com/alesharik) for this contribution! + ### [`xhci`](https://github.com/rust-osdev/xhci) Maintained by [@toku-sa-n](https://github.com/toku-sa-n) From e3074ce3192bc920c8a2bb3d1a1aaa2afc746ff5 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Mon, 6 Jun 2022 15:01:33 +0200 Subject: [PATCH 4/8] The `x86_64` crate was not updated this month --- content/this-month/2022-05/index.md | 7 ------- 1 file changed, 7 deletions(-) diff --git a/content/this-month/2022-05/index.md b/content/this-month/2022-05/index.md index 3aeeb654..9f8505cd 100644 --- a/content/this-month/2022-05/index.md +++ b/content/this-month/2022-05/index.md @@ -30,13 +30,6 @@ In this section, we give an overview of notable changes to the projects hosted u [`rust-osdev`]: https://github.com/rust-osdev/about -### [`x86_64`](https://github.com/rust-osdev/x86_64) - -Maintained by [@phil-opp](https://github.com/phil-opp), [@josephlr](https://github.com/orgs/rust-osdev/people/josephlr), [@Freax13](https://github.com/orgs/rust-osdev/people/Freax13), and [@rybot666](https://github.com/orgs/rust-osdev/people/rybot666) - -The `x86_64` crate provides various abstractions for `x86_64` systems, including wrappers for CPU instructions, access to processor-specific registers, and abstraction types for architecture-specific structures such as page tables and descriptor tables. - -In May, … ### [`pci_types`](https://github.com/rust-osdev/pci_types) From c8663ebf2b146ab860b6a95306e8d1f4e7300842 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Mon, 6 Jun 2022 15:13:04 +0200 Subject: [PATCH 5/8] Add `uefi` updates --- content/this-month/2022-05/index.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/content/this-month/2022-05/index.md b/content/this-month/2022-05/index.md index 9f8505cd..7ec14fb1 100644 --- a/content/this-month/2022-05/index.md +++ b/content/this-month/2022-05/index.md @@ -30,6 +30,30 @@ In this section, we give an overview of notable changes to the projects hosted u [`rust-osdev`]: https://github.com/rust-osdev/about +### [`uefi-rs`](https://github.com/rust-osdev/uefi-rs) + +Maintained by [@GabrielMajeri](https://github.com/GabrielMajeri) and [@nicholasbishop](https://github.com/nicholasbishop) + +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 May: + +#### Improvements + +- [Change logger max level to be set by feature](https://github.com/rust-osdev/uefi-rs/pull/429) +- [Release new versions of the crates](https://github.com/rust-osdev/uefi-rs/pull/432) (published `uefi v0.16.0`, `uefi-macros v0.7.0`, and `uefi-services v0.13.0`) +- [Implement `Deref` and `DerefMut` for `ScopedProtocol`](https://github.com/rust-osdev/uefi-rs/pull/434) +- [Implement `core::fmt::Write` for `Serial`](https://github.com/rust-osdev/uefi-rs/pull/437) +- [Add documentation links](https://github.com/rust-osdev/uefi-rs/pull/426) + +#### Fixes + +- [Fix an accidental `*const` conversion](https://github.com/rust-osdev/uefi-rs/pull/423) +- [Fix compilation of the xtask package under Windows and add to CI](https://github.com/rust-osdev/uefi-rs/pull/438) +- [Switch back to automatic `Debug` derive for `Header` struct](https://github.com/rust-osdev/uefi-rs/pull/435) +- [Check table version before calling UEFI 2.0+ functions](https://github.com/rust-osdev/uefi-rs/pull/436) + +Thanks to [@JonahPlusPlus](https://github.com/JonahPlusPlus), [@raccog](https://github.com/raccog), and [@verticalegg](https://github.com/verticalegg) for their contributions! ### [`pci_types`](https://github.com/rust-osdev/pci_types) From 352d60bd5b826e9d2fbc1e6def79336cf0901d17 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Mon, 6 Jun 2022 15:21:28 +0200 Subject: [PATCH 6/8] Add `bootloader` updates --- content/this-month/2022-05/index.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/content/this-month/2022-05/index.md b/content/this-month/2022-05/index.md index 7ec14fb1..eea9e5ce 100644 --- a/content/this-month/2022-05/index.md +++ b/content/this-month/2022-05/index.md @@ -55,6 +55,16 @@ We merged the following changes in May: Thanks to [@JonahPlusPlus](https://github.com/JonahPlusPlus), [@raccog](https://github.com/raccog), and [@verticalegg](https://github.com/verticalegg) for their contributions! +### [`bootloader`](https://github.com/rust-osdev/bootloader) + +Maintained by [@phil-opp](https://github.com/phil-opp), [@rybot666](https://github.com/rybot666), and [@64](https://github.com/64) + +The `bootloader` crate implements a custom Rust-based bootloader for easy loading of 64-bit ELF executables. This month, we merged the following new feature: + +- [Add UEFI PXE support](https://github.com/rust-osdev/bootloader/pull/237) to load a kernel from a TFTP server + +This feature will be part of the upcoming `v0.11` release. Thanks to [@Freax13](https://github.com/Freax13) for this contribution! + ### [`pci_types`](https://github.com/rust-osdev/pci_types) The `pci_types` library provides types for accessing and configuring PCI devices from Rust operating systems. Lots of this code (e.g. identifying devices by class codes) can be shared From 062f7ef3c71afc19860ecf3886e23373fbf1bec7 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Mon, 6 Jun 2022 16:24:26 +0200 Subject: [PATCH 7/8] There are no entries for the 'Other Projects' section this month --- content/this-month/2022-05/index.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/content/this-month/2022-05/index.md b/content/this-month/2022-05/index.md index eea9e5ce..2c1ad951 100644 --- a/content/this-month/2022-05/index.md +++ b/content/this-month/2022-05/index.md @@ -100,7 +100,7 @@ Please use the following template for adding items: -_No tasks were proposed for this section._ +_No tasks were proposed for this section this month._ @@ -110,11 +110,11 @@ If you maintain a Rust project related to operating system development and are l In this section, we describe updates to Rust OS projects that are not directly related to the `rust-osdev` organization. Feel free to [create a pull request](https://github.com/rust-osdev/homepage/pulls) with the updates of your OS project for the next post. -### [`phil-opp/blog_os`](https://github.com/phil-opp/blog_os) + -(Section written by [@phil-opp](https://github.com/phil-opp)) +_No projects were proposed for this section this month._ -This month, ... + ## Join Us? From 55fb0a4f6ba072a0d6dde15973190587005d5156 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Wed, 8 Jun 2022 22:27:46 +0200 Subject: [PATCH 8/8] Set publish date --- content/this-month/2022-05/index.md | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/content/this-month/2022-05/index.md b/content/this-month/2022-05/index.md index 2c1ad951..579213d8 100644 --- a/content/this-month/2022-05/index.md +++ b/content/this-month/2022-05/index.md @@ -1,6 +1,6 @@ +++ title = "This Month in Rust OSDev: May 2022" -date = 0000-01-01 +date = 2022-06-08 [extra] month = "May 2022" @@ -119,8 +119,3 @@ _No projects were proposed for this section this month._ ## Join Us? Are you interested in Rust-based operating system development? Our `rust-osdev` organization is always open to new members and new projects. Just let us know if you want to join! A good way for getting in touch is our [gitter channel](https://gitter.im/rust-osdev/Lobby). - - -