Add tables of contents to all blog posts

This commit is contained in:
Philipp Oppermann
2016-07-17 17:10:23 +02:00
parent 62dd13b2e7
commit bc6f496eb5
9 changed files with 9 additions and 9 deletions

View File

@@ -12,7 +12,7 @@ This post explains how to create a minimal x86 operating system kernel. In fact,
[Rust]: http://www.rust-lang.org/
<!--more-->
<!--more--><aside id="toc"></aside>
I tried to explain everything in detail and to keep the code as simple as possible. If you have any questions, suggestions or other issues, please leave a comment or [create an issue] on Github. The source code is available in a [repository][source code], too.

View File

@@ -16,7 +16,7 @@ In the [previous post] we created a minimal multiboot kernel. It just prints `OK
[protected mode]: https://en.wikipedia.org/wiki/Protected_mode
[long mode]: https://en.wikipedia.org/wiki/Long_mode
<!--more-->
<!--more--><aside id="toc"></aside>
I tried to explain everything in detail and to keep the code as simple as possible. If you have any questions, suggestions, or issues, please leave a comment or [create an issue] on Github. The source code is available in a [repository][source code], too.

View File

@@ -15,7 +15,7 @@ In the previous posts we created a [minimal Multiboot kernel][multiboot post] an
[long mode post]: {{% relref "2015-08-25-entering-longmode.md" %}}
[Rust]: https://www.rust-lang.org/
<!--more-->
<!--more--><aside id="toc"></aside>
This blog post tries to set up Rust step-by-step and point out the different problems. If you have any questions, problems, or suggestions please [file an issue] or create a comment at the bottom. The code from this post is in a [Github repository], too.

View File

@@ -14,7 +14,7 @@ In the [previous post] we switched from assembly to [Rust], a systems programmin
[raw pointers]: https://doc.rust-lang.org/book/raw-pointers.html
[formatting macros]: https://doc.rust-lang.org/std/fmt/#related-macros
<!--more-->
<!--more--><aside id="toc"></aside>
This post uses recent unstable features, so you need an up-to-date nighly compiler. If you have any questions, problems, or suggestions please [file an issue] or create a comment at the bottom. The code from this post is also available on [Github][code repository].

View File

@@ -5,7 +5,7 @@ date = "2015-11-15"
In this post we create an allocator that provides free physical frames for a future paging module. To get the required information about available and used memory we use the Multiboot information structure. Additionally, we improve the `panic` handler to print the corresponding message and source line.
<!--more-->
<!--more--><aside id="toc"></aside>
The full source code is available on [Github][source repo]. Feel free to open issues there if you have any problems or improvements. You can also leave a comment at the bottom.

View File

@@ -6,7 +6,7 @@ date = "2015-12-09"
In this post we will create a paging module, which allows us to access and modify the 4-level page table. We will explore recursive page table mapping and use some Rust features to make it safe. Finally we will create functions to translate virtual addresses and to map and unmap pages.
<!--more-->
<!--more--><aside id="toc" class="coarse"></aside>
You can find the source code and this post itself on [Github][source repository]. Please file an issue there if you have any problems or improvement suggestions. There is also a comment section at the end of this page. Note that this post requires a current Rust nightly.

View File

@@ -6,7 +6,7 @@ updated = "2016-03-06"
In this post we will create a new page table to map the kernel sections correctly. Therefor we will extend the paging module to support modifications of _inactive_ page tables as well. Then we will switch to the new table and secure our kernel stack by creating a guard page.
<!--more-->
<!--more--><aside id="toc" class="coarse"></aside>
As always, you can find the source code on [Github]. Don't hesitate to file issues there if you have any problems or improvement suggestions. There is also a comment section at the end of this page. Note that this post requires a current Rust nightly.

View File

@@ -10,7 +10,7 @@ In the previous posts we have created a [frame allocator] and a [page table modu
[alloc]: https://doc.rust-lang.org/nightly/alloc/index.html
[collections]: https://doc.rust-lang.org/nightly/collections/index.html
<!--more-->
<!--more--><aside id="toc"></aside>
As always, you can find the complete source code on [Github]. Please file [issues] for any problems, questions, or improvement suggestions. There is also a comment section at the end of this page.

View File

@@ -6,7 +6,7 @@ updated = "2016-06-25"
In this post, we start exploring exceptions. We set up an interrupt descriptor table and add handler functions. At the end of this post, our kernel will be able to catch divide-by-zero faults.
<!--more-->
<!--more--><aside id="toc"></aside>
As always, the complete source code is on [Github]. Please file [issues] for any problems, questions, or improvement suggestions. There is also a comment section at the end of this page.