Add chapter information to frontmatter

This commit is contained in:
Philipp Oppermann
2020-01-28 16:03:41 +01:00
parent c1319ba34f
commit 7d27a2c4a4
11 changed files with 25 additions and 0 deletions

View File

@@ -4,6 +4,8 @@ weight = 1
path = "freestanding-rust-binary"
date = 2018-02-10
[extra]
chapter = "Bare Bones"
+++
The first step in creating our own operating system kernel is to create a Rust executable that does not link the standard library. This makes it possible to run Rust code on the [bare metal] without an underlying operating system.