diff options
author | Adam Quandour <[email protected]> | 2025-05-30 16:08:13 -0700 |
---|---|---|
committer | Hilton Chain <[email protected]> | 2025-06-02 12:03:46 +0800 |
commit | 3df02ddb26b0ab6b80019e15a4c3f4636e732ee1 (patch) | |
tree | 23f9aac3e7700b670da1e10ae22735d1b01617a3 /doc | |
parent | 6787f3aaf91f60e3a0077ff4599da6b7e5c0d204 (diff) |
doc: cookbook: Fix grammar.
* doc/guix-cookbook.texi (Customizing the Kernel): Fix grammar.
Change-Id: I896536a6c9f06e2fb30f3da56e054a26bfd5d0af
Signed-off-by: Hilton Chain <[email protected]>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/guix-cookbook.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/guix-cookbook.texi b/doc/guix-cookbook.texi index 69c9aa9640..691cf3a2cc 100644 --- a/doc/guix-cookbook.texi +++ b/doc/guix-cookbook.texi @@ -1732,7 +1732,7 @@ procedure. To produce such file you need to obtain Linux source code, create a @file{.config} file (using @code{make menuconfig} command, for example) or provide one you already have. After that you will need to run @code{make savedefconfig} command within the kernel source tree---this will -produce the @file{defconfig} file which we can be used to build a custom kernel. +produce the @file{defconfig} file which we will use to build a custom kernel. Below is a sample kernel package. @@ -1747,8 +1747,8 @@ Below is a sample kernel package. @end lisp In the same directory as the file defining @code{my-linux-libre} is a file -named @file{defconfig}. This way you way you can provide kernel options -you want to have in the result kernel. +named @file{defconfig}. This way you can provide kernel options you want to +have in the result kernel. The second way to create a custom kernel is to pass a new value to the @code{extra-options} keyword of the @code{make-linux-libre} procedure. The |