Make chapters sections to avoid rendering them

Instead of redirecting the chapter pages to a 404 site.
This commit is contained in:
Philipp Oppermann
2021-01-07 20:07:43 +01:00
parent 2e52b681ec
commit ec1f80416b
5 changed files with 5 additions and 12 deletions

View File

@@ -0,0 +1,6 @@
+++
title = "Bare Bones"
render = false
+++
In this first chapter, we explain how to create an operating system for the `x86_64` architecture step for step. Starting from scratch, we first create a minimal Rust executable that doesn't depend on the standard library. We then turn it into a bootable OS kernel by combining it with a bootloader. The resulting disk image can then be launched in the [QEMU](https://www.qemu.org/) emulator or booted on a real machine.