mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-16 06:17:49 +00:00
Updates in October and November 2019 (#695)
This commit is contained in:
committed by
GitHub
parent
3d25c27b11
commit
78ce5f3e6e
34
blog/content/status-update/2019-12-02.md
Normal file
34
blog/content/status-update/2019-12-02.md
Normal file
@@ -0,0 +1,34 @@
|
||||
+++
|
||||
title = "Updates in October and November 2019"
|
||||
date = 2019-12-02
|
||||
+++
|
||||
|
||||
This post gives an overview of the recent updates to the _Writing an OS in Rust_ blog and the used libraries and tools.
|
||||
|
||||
I moved to a new apartment mid-October and had lots of work to do there, so I didn't have the time for creating the October status update post. Therefore, this post lists the changes from both October and November. I'm slowly picking up speed again, but I still have a lot of mails in my backlog. Sorry if you haven't received an answer yet!
|
||||
|
||||
## `blog_os`
|
||||
|
||||
The blog itself received only a minor update: [Use panic! instead of println! + loop in double fault handler](https://github.com/phil-opp/blog_os/pull/687). This fixes an issue where a double fault during `cargo xtest` leads to an endless loop without any output on the serial port.
|
||||
|
||||
We also have other news: We plan to add [Experimental Support for Community Translations](https://github.com/phil-opp/blog_os/pull/692) to the blog. While this imposes additional challenges, it makes the content accessible to people who don't speak English, so it's definitely worth trying in my opinion. The first additional language will be [Chinese](https://github.com/phil-opp/blog_os/pull/694), based on an [existing translation](https://github.com/rustcc/writing-an-os-in-rust) by [@luojia65](https://github.com/luojia65). Many thanks also to [@TheBegining](https://github.com/TheBegining) and [@Rustin-Liu](https://github.com/Rustin-Liu) for helping with the translation!
|
||||
|
||||
## `bootloader`
|
||||
|
||||
- [Change the way the kernel entry point is called to honor alignement ABI](https://github.com/rust-osdev/bootloader/pull/81) by [@GuillaumeDIDIER](https://github.com/GuillaumeDIDIER) (published as version 0.8.2)
|
||||
- [Add support for Github Actions](https://github.com/rust-osdev/bootloader/pull/82)
|
||||
- [Remove unnecessary `extern C` on panic handler to fix not-ffi-safe warning](https://github.com/rust-osdev/bootloader/pull/85) by [@cmsd2](https://github.com/cmsd2) (published as version 0.8.3)
|
||||
|
||||
## `bootimage`
|
||||
|
||||
- [Don't exit with expected exit code when failed to read QEMU exit code](https://github.com/rust-osdev/bootimage/pull/47)
|
||||
|
||||
## `x86_64`
|
||||
|
||||
- [Switch to GitHub Actions for CI](https://github.com/rust-osdev/x86_64/pull/93)
|
||||
- [Use `repr C` to suppress not-ffi-safe when used with extern handler functions](https://github.com/rust-osdev/x86_64/pull/94) by [@cmsd2](https://github.com/cmsd2) (published as version 0.7.6)
|
||||
- [Add `slice` and `slice_mut` methods to IDT](https://github.com/rust-osdev/x86_64/pull/95) by [@foxcob](https://github.com/foxcob) (published as version 0.7.7)
|
||||
|
||||
## `cargo-xbuild`
|
||||
|
||||
- [Add support for publishing and installing cross compiled crates](https://github.com/rust-osdev/cargo-xbuild/pull/47) by [@ALSchwalm](https://github.com/ALSchwalm) (published as version 0.5.18)
|
||||
Reference in New Issue
Block a user