From 7ffaf1cac83037173cfca168e4390f9529cc8fe9 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Fri, 6 Nov 2015 19:46:27 +0100 Subject: [PATCH] Update links to blog repository --- _config.yml | 2 +- _posts/2015-08-18-multiboot-kernel.md | 2 +- _posts/2015-08-25-entering-longmode.md | 2 +- _posts/2015-09-02-setup-rust.md | 2 +- _posts/2015-10-23-printing-to-screen.md | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/_config.yml b/_config.yml index 34906611..838c9382 100644 --- a/_config.yml +++ b/_config.yml @@ -30,7 +30,7 @@ author: # Custom vars version: 1.0.0 github: - repo: https://github.com/phil-opp/phil-opp.github.io + repo: https://github.com/phil-opp/blog_os # Navigation navigation_pages: diff --git a/_posts/2015-08-18-multiboot-kernel.md b/_posts/2015-08-18-multiboot-kernel.md index b4d39b59..a222cea4 100644 --- a/_posts/2015-08-18-multiboot-kernel.md +++ b/_posts/2015-08-18-multiboot-kernel.md @@ -7,7 +7,7 @@ This post explains how to create a minimal x86 operating system kernel. In fact, 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. [Rust]: http://www.rust-lang.org/ -[create an issue]: https://github.com/phil-opp/phil-opp.github.io/issues +[create an issue]: https://github.com/phil-opp/blog_os/issues [source code]: https://github.com/phil-opp/blog_os/tree/multiboot_bootstrap/src/arch/x86_64 ## Overview diff --git a/_posts/2015-08-25-entering-longmode.md b/_posts/2015-08-25-entering-longmode.md index fa4b33d2..66c97a86 100644 --- a/_posts/2015-08-25-entering-longmode.md +++ b/_posts/2015-08-25-entering-longmode.md @@ -11,7 +11,7 @@ I tried to explain everything in detail and to keep the code as simple as possib [Rust]: http://www.rust-lang.org/ [protected mode]: https://en.wikipedia.org/wiki/Protected_mode [long mode]: https://en.wikipedia.org/wiki/Long_mode -[create an issue]: https://github.com/phil-opp/phil-opp.github.io/issues +[create an issue]: https://github.com/phil-opp/blog_os/issues [source code]: https://github.com/phil-opp/blog_os/tree/entering_longmode/src/arch/x86_64 _Notable Changes_: We don't use 1GiB pages anymore, since they have [compatibility problems][1GiB page problems]. The identity mapping is now done through 2MiB pages. diff --git a/_posts/2015-09-02-setup-rust.md b/_posts/2015-09-02-setup-rust.md index 5782945f..df397e89 100644 --- a/_posts/2015-09-02-setup-rust.md +++ b/_posts/2015-09-02-setup-rust.md @@ -9,7 +9,7 @@ This blog post tries to setup Rust step-by-step and point out the different prob [multiboot post]: {{ site.url }}{{ page.previous.previous.url }} [long mode post]: {{ site.url }}{{ page.previous.url }} [Rust]: https://www.rust-lang.org/ -[file an issue]: https://github.com/phil-opp/phil-opp.github.io/issues +[file an issue]: https://github.com/phil-opp/blog_os/issues [Github repository]: https://github.com/phil-opp/blog_os/tree/setup_rust ## Installing Rust diff --git a/_posts/2015-10-23-printing-to-screen.md b/_posts/2015-10-23-printing-to-screen.md index b55e48e5..9f893ec8 100644 --- a/_posts/2015-10-23-printing-to-screen.md +++ b/_posts/2015-10-23-printing-to-screen.md @@ -11,7 +11,7 @@ In the [previous post] we switched from assembly to [Rust], a systems programmin 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]. -[file an issue]: https://github.com/phil-opp/phil-opp.github.io/issues +[file an issue]: https://github.com/phil-opp/blog_os/issues [code repository]: https://github.com/phil-opp/blog_os/tree/printing_to_screen/src ## The VGA Text Buffer