diff options
author | johannst <johannes.stoelp@gmail.com> | 2021-07-15 21:30:11 +0200 |
---|---|---|
committer | johannst <johannes.stoelp@gmail.com> | 2021-07-15 21:30:11 +0200 |
commit | 7acc36132ffd95af202a82ecc69a8ba68e698148 (patch) | |
tree | 8a1ba9bf746f55ded104b497e762466bb7c7b302 | |
parent | 82e9ac4163b46b59e121194f84ac370818482923 (diff) | |
download | blog-7acc36132ffd95af202a82ecc69a8ba68e698148.tar.gz blog-7acc36132ffd95af202a82ecc69a8ba68e698148.zip |
fix include paths after rename
-rw-r--r-- | content/2019-10-27-kernel-debugging-qemu.md | 6 | ||||
-rw-r--r-- | content/2021-05-15-pthread_cancel-noexcept.md | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/content/2019-10-27-kernel-debugging-qemu.md b/content/2019-10-27-kernel-debugging-qemu.md index cdf68aa..24cc6ee 100644 --- a/content/2019-10-27-kernel-debugging-qemu.md +++ b/content/2019-10-27-kernel-debugging-qemu.md @@ -55,7 +55,7 @@ files: Full configure & build script: ```sh -{{ include(path="content/20191027-kernel-debugging-qemu/build_kernel.sh") }} +{{ include(path="content/2019-10-27-kernel-debugging-qemu/build_kernel.sh") }} ``` ## $> make initrd @@ -88,7 +88,7 @@ EOF Full busybox & initrd build script: ```sh -{{ include(path="content/20191027-kernel-debugging-qemu/build_initrd.sh") }} +{{ include(path="content/2019-10-27-kernel-debugging-qemu/build_initrd.sh") }} ``` ## Running QEMU && GDB @@ -195,7 +195,7 @@ The following `Dockerfile` provides a development environment with all the required tools and dependencies, to re-produce all the steps of building and debugging the Linux kernel. ```dockerfile -{{ include(path="content/20191027-kernel-debugging-qemu/Dockerfile") }} +{{ include(path="content/2019-10-27-kernel-debugging-qemu/Dockerfile") }} ``` Save the listing above in a file called `Dockerfile` and build the docker image diff --git a/content/2021-05-15-pthread_cancel-noexcept.md b/content/2021-05-15-pthread_cancel-noexcept.md index f012cd1..4ff0fc2 100644 --- a/content/2021-05-15-pthread_cancel-noexcept.md +++ b/content/2021-05-15-pthread_cancel-noexcept.md @@ -98,7 +98,7 @@ try { ## Appendix: Minimal reproducer ```cpp -{{ include(path="content/20210515-pthread_cancel-noexcept/thread.cc") }} +{{ include(path="content/2021-05-15-pthread_cancel-noexcept/thread.cc") }} ``` [std_terminate]: https://en.cppreference.com/w/cpp/error/terminate |