summaryrefslogtreecommitdiff
path: root/website
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2019-05-21 11:18:36 +0200
committerLudovic Courtès <ludo@gnu.org>2019-05-21 11:18:36 +0200
commit665d858a921511abc6ea81163eb2b04854c1ffb5 (patch)
treeb199e45ac53347ce45ced21c884513fafdaf0a89 /website
parentwebsite: guix-1.0.1: Refer to issues.guix.gnu.org. (diff)
downloadguix-artwork-665d858a921511abc6ea81163eb2b04854c1ffb5.tar.gz
website: custom-kernel: Prepare for publication.
* website/posts/custom-kernel.md: Update tags and date. Add a couple of backquotes.
Diffstat (limited to 'website')
-rw-r--r--website/posts/custom-kernel.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/website/posts/custom-kernel.md b/website/posts/custom-kernel.md
index b6b7d82..4b1088b 100644
--- a/website/posts/custom-kernel.md
+++ b/website/posts/custom-kernel.md
@@ -1,7 +1,7 @@
title: Creating and using a custom Linux kernel on Guix System
-date: 2019-05-20 00:00
+date: 2019-05-21 12:00
author: Efraim Flashner
-tags: kernel, customization
+tags: Software development, Kernel, Customization
---
Guix is, at its core, a source based distribution with
@@ -59,16 +59,16 @@ declared like this:
```
Any keys which are not assigned values inherit their default value from
-the make-linux-libre definition. When comparing the two snippets above,
+the `make-linux-libre` definition. When comparing the two snippets above,
you may notice that the code comment in the first doesn't actually refer
-to the extra-version keyword; it is actually for configuration-file.
+to the `#:extra-version` keyword; it is actually for `#:configuration-file`.
Because of this, it is not actually easy to include a custom kernel
configuration from the definition, but don't worry, there are other ways
to work with what we do have.
There are two ways to create a kernel with a custom kernel configuration.
The first is to provide a standard `.config` file during the build
-process by including an actual `.config` file as a native-input to our
+process by including an actual `.config` file as a native input to our
custom kernel. The
[following](https://git.savannah.gnu.org/cgit/guix.git/tree/gnu/packages/linux.scm#n379)
is a snippet from the custom 'configure phase of the `make-linux-libre`