Skip to content

Commit d8279e0

Browse files
committed
Add draft for February status update
1 parent aa871f9 commit d8279e0

File tree

2 files changed

+87
-1
lines changed

2 files changed

+87
-1
lines changed

content/this-month/2022-02/index.md

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
+++
2+
title = "This Month in Rust OSDev (February 2022)"
3+
date = 0000-01-01
4+
5+
[extra]
6+
month = "February 2022"
7+
authors = [
8+
"phil-opp",
9+
# add yourself here
10+
]
11+
+++
12+
13+
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.
14+
15+
<!-- more -->
16+
17+
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.
18+
19+
<!--
20+
This is a draft for the upcoming "This Month in Rust OSDev (February 2022)" post.
21+
Feel free to create pull requests against the `next` branch to add your
22+
content here.
23+
Please take a look at the past posts on https://rust-osdev.com/ to see the
24+
general structure of these posts.
25+
-->
26+
27+
## Project Updates
28+
29+
In this section, we give an overview of notable changes to the projects hosted under the [`rust-osdev`] organization.
30+
31+
[`rust-osdev`]: https://github.com/rust-osdev/about
32+
33+
### [`x86_64`](https://github.com/rust-osdev/x86_64)
34+
35+
<span class="maintainers">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)</span>
36+
37+
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.
38+
39+
In February, …
40+
41+
## Call for Participation
42+
43+
Want to contribute to a Rust OSDev project, but don't know where to start? Pick up one of these outstanding
44+
issues in one of our projects and get started!
45+
46+
<!--
47+
Please use the following template for adding items:
48+
- [(`repo_name`) Issue Description](https://example.com/link-to-issue)
49+
-->
50+
51+
<span class="gray">
52+
53+
_No tasks were proposed for this section._
54+
55+
</span>
56+
57+
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.
58+
59+
## Other Projects
60+
61+
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.
62+
63+
### [`phil-opp/blog_os`](https://github.com/phil-opp/blog_os)
64+
65+
<span class="gray">(Section written by [@phil-opp](https://github.com/phil-opp))</span>
66+
67+
This month, ...
68+
69+
## Join Us?
70+
71+
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).
72+
73+
74+
<!--
75+
TODO: Update publication date
76+
-->

static/css/main.css

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,14 @@ h1 code, h2 code, h3 code, h4 code, h5 code, h6 code {
3838
color: gray;
3939
font-style: italic;
4040
margin-left: 1rem;
41-
}
41+
}
42+
43+
.maintainers {
44+
display: block;
45+
margin-top: -.5rem;
46+
color: #9a9a9a;
47+
}
48+
49+
.maintainers a {
50+
color: #9a9a9a;
51+
}

0 commit comments

Comments
 (0)