Remove sections from URLs

This commit is contained in:
Philipp Oppermann
2017-06-09 18:08:10 +02:00
parent e11d838189
commit c104445880
14 changed files with 14 additions and 14 deletions

View File

@@ -1,7 +1,7 @@
+++
title = "Cross Compile Binutils"
description = ""
slug = "cross-compile-binutils"
url = "cross-compile-binutils"
+++
The [GNU Binutils] are a collection of various binary tools such as `ld`, `as`, `objdump`, or `readelf`. These tools are platform-specific, so you need to compile them again if your host system and target system are different. In our case, we need `ld` and `objdump` for the x86_64 architecture.

View File

@@ -1,7 +1,7 @@
+++
title = "Cross Compiling: libcore"
description = ""
slug = "cross-compile-libcore"
url = "cross-compile-libcore"
+++
If you get an `error: can't find crate for 'core'`, you're probably compiling for a different target (e.g. you're passing the `target` option to `cargo build`). Now the compiler complains that it can't find the `core` library. This document gives a quick overview how to fix this problem. For more details, see the [rust-cross] project.

View File

@@ -1,7 +1,7 @@
+++
title = "Catching Exceptions"
order = 1
slug = "catching-exceptions"
url = "catching-exceptions"
date = "2016-05-28"
updated = "2016-06-25"
+++

View File

@@ -1,7 +1,7 @@
+++
title = "Better Exception Messages"
order = 2
slug = "better-exception-messages"
url = "better-exception-messages"
date = "2016-08-03"
updated = "2016-11-01"
+++

View File

@@ -1,7 +1,7 @@
+++
title = "Returning from Exceptions"
order = 3
slug = "returning-from-exceptions"
url = "returning-from-exceptions"
date = "2016-09-21"
updated = "2016-11-01"
+++

View File

@@ -1,7 +1,7 @@
+++
title = "Set Up GDB"
description = ""
slug = "set-up-gdb"
url = "set-up-gdb"
+++
There are a lot of things that can go wrong when developing an OS. So it's a good idea to add a debugger to our toolset, which allows us to set breakpoints and examine variables. We will use [GDB](https://www.gnu.org/software/gdb/) as QEMU supports it out of the box.

View File

@@ -1,6 +1,6 @@
+++
title = "Contact"
slug = "contact"
url = "contact"
+++
Philipp Oppermann

View File

@@ -1,7 +1,7 @@
+++
title = "Printing to Screen"
order = 4
slug = "printing-to-screen"
url = "printing-to-screen"
date = "2015-10-23"
updated = "2016-10-31"
aliases = [

View File

@@ -1,7 +1,7 @@
+++
title = "Allocating Frames"
order = 5
slug = "allocating-frames"
url = "allocating-frames"
date = "2015-11-15"
+++

View File

@@ -1,7 +1,7 @@
+++
title = "Page Tables"
order = 6
slug = "page-tables"
url = "page-tables"
date = "2015-12-09"
+++

View File

@@ -1,7 +1,7 @@
+++
title = "Remap the Kernel"
order = 7
slug = "remap-the-kernel"
url = "remap-the-kernel"
date = "2016-01-01"
updated = "2016-03-06"
+++

View File

@@ -1,7 +1,7 @@
+++
title = "Kernel Heap"
order = 8
slug = "kernel-heap"
url = "kernel-heap"
date = "2016-04-11"
+++

View File

@@ -1,7 +1,7 @@
+++
title = "Handling Exceptions"
order = 9
slug = "handling-exceptions"
url = "handling-exceptions"
date = "2017-03-26"
+++

View File

@@ -1,7 +1,7 @@
+++
title = "Double Faults"
order = 10
slug = "double-faults"
url = "double-faults"
date = "2017-01-02"
+++