Update post numbers

Renames the directories, updates the weights, and the post branch links
This commit is contained in:
Philipp Oppermann
2019-04-25 17:40:22 +02:00
parent 992b958414
commit e8901719fa
45 changed files with 15 additions and 15 deletions

View File

@@ -1,6 +1,6 @@
+++
title = "CPU Exceptions"
weight = 6
weight = 5
path = "cpu-exceptions"
date = 2018-06-17
@@ -12,11 +12,11 @@ CPU exceptions occur in various erroneous situations, for example when accessing
<!-- more -->
This blog is openly developed on [GitHub]. If you have any problems or questions, please open an issue there. You can also leave comments [at the bottom]. The complete source code for this post can be found in the [`post-06`][post branch] branch.
This blog is openly developed on [GitHub]. If you have any problems or questions, please open an issue there. You can also leave comments [at the bottom]. The complete source code for this post can be found in the [`post-05`][post branch] branch.
[GitHub]: https://github.com/phil-opp/blog_os
[at the bottom]: #comments
[post branch]: https://github.com/phil-opp/blog_os/tree/post-06
[post branch]: https://github.com/phil-opp/blog_os/tree/post-05
<!-- toc -->

View File

@@ -1,6 +1,6 @@
+++
title = "Double Faults"
weight = 7
weight = 6
path = "double-fault-exceptions"
date = 2018-06-18
@@ -10,11 +10,11 @@ This post explores the double fault exception in detail, which occurs when the C
<!-- more -->
This blog is openly developed on [GitHub]. If you have any problems or questions, please open an issue there. You can also leave comments [at the bottom]. The complete source code for this post can be found in the [`post-07`][post branch] branch.
This blog is openly developed on [GitHub]. If you have any problems or questions, please open an issue there. You can also leave comments [at the bottom]. The complete source code for this post can be found in the [`post-06`][post branch] branch.
[GitHub]: https://github.com/phil-opp/blog_os
[at the bottom]: #comments
[post branch]: https://github.com/phil-opp/blog_os/tree/post-07
[post branch]: https://github.com/phil-opp/blog_os/tree/post-06
<!-- toc -->

View File

@@ -1,6 +1,6 @@
+++
title = "Hardware Interrupts"
weight = 8
weight = 7
path = "hardware-interrupts"
date = 2018-10-22
@@ -10,11 +10,11 @@ In this post we set up the programmable interrupt controller to correctly forwar
<!-- more -->
This blog is openly developed on [GitHub]. If you have any problems or questions, please open an issue there. You can also leave comments [at the bottom]. The complete source code for this post can be found in the [`post-08`][post branch] branch.
This blog is openly developed on [GitHub]. If you have any problems or questions, please open an issue there. You can also leave comments [at the bottom]. The complete source code for this post can be found in the [`post-07`][post branch] branch.
[GitHub]: https://github.com/phil-opp/blog_os
[at the bottom]: #comments
[post branch]: https://github.com/phil-opp/blog_os/tree/post-08
[post branch]: https://github.com/phil-opp/blog_os/tree/post-07
<!-- toc -->

View File

@@ -1,6 +1,6 @@
+++
title = "Introduction to Paging"
weight = 9
weight = 8
path = "paging-introduction"
date = 2019-01-14
@@ -10,11 +10,11 @@ This post introduces _paging_, a very common memory management scheme that we wi
<!-- more -->
This blog is openly developed on [GitHub]. If you have any problems or questions, please open an issue there. You can also leave comments [at the bottom]. The complete source code for this post can be found in the [`post-09`][post branch] branch.
This blog is openly developed on [GitHub]. If you have any problems or questions, please open an issue there. You can also leave comments [at the bottom]. The complete source code for this post can be found in the [`post-08`][post branch] branch.
[GitHub]: https://github.com/phil-opp/blog_os
[at the bottom]: #comments
[post branch]: https://github.com/phil-opp/blog_os/tree/post-09
[post branch]: https://github.com/phil-opp/blog_os/tree/post-08
<!-- toc -->

View File

@@ -1,6 +1,6 @@
+++
title = "Paging Implementation"
weight = 10
weight = 9
path = "paging-implementation"
date = 2019-03-14
+++
@@ -9,11 +9,11 @@ This post shows how to implement paging support in our kernel. It first explores
<!-- more -->
This blog is openly developed on [GitHub]. If you have any problems or questions, please open an issue there. You can also leave comments [at the bottom]. The complete source code for this post can be found in the [`post-10`][post branch] branch.
This blog is openly developed on [GitHub]. If you have any problems or questions, please open an issue there. You can also leave comments [at the bottom]. The complete source code for this post can be found in the [`post-09`][post branch] branch.
[GitHub]: https://github.com/phil-opp/blog_os
[at the bottom]: #comments
[post branch]: https://github.com/phil-opp/blog_os/tree/post-10
[post branch]: https://github.com/phil-opp/blog_os/tree/post-09
<aside class="post_aside">