mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-20 16:07:49 +00:00
Convert front matters to hugo's toml-based format
This commit is contained in:
@@ -1,8 +1,9 @@
|
||||
---
|
||||
layout: post
|
||||
title: 'Remap the Kernel'
|
||||
updated: 2016-03-06 00:00:00 +0000
|
||||
---
|
||||
+++
|
||||
title = "Remap the Kernel"
|
||||
date = "2016-01-01"
|
||||
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.
|
||||
|
||||
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.
|
||||
|
||||
Reference in New Issue
Block a user