Skip to content
Snippets Groups Projects
Unverified Commit e892b9c3 authored by Tobias Geerinckx-Rice's avatar Tobias Geerinckx-Rice
Browse files

doc: cookbook: Fix ‘file system’ spelling.

* doc/guix-cookbook.texi (Getting help, Customizing the Kernel):
Fix ‘file system’ spelling.
parent 3786f296
No related branches found
No related tags found
No related merge requests found
...@@ -1288,7 +1288,7 @@ version or compilation options. ...@@ -1288,7 +1288,7 @@ version or compilation options.
@subsection Getting help @subsection Getting help
Sadly, some applications can be tough to package. Sometimes they need a patch to Sadly, some applications can be tough to package. Sometimes they need a patch to
work with the non-standard filesystem hierarchy enforced by the store. work with the non-standard file system hierarchy enforced by the store.
Sometimes the tests won't run properly. (They can be skipped but this is not Sometimes the tests won't run properly. (They can be skipped but this is not
recommended.) Other times the resulting package won't be reproducible. recommended.) Other times the resulting package won't be reproducible.
...@@ -1501,7 +1501,7 @@ custom kernel: ...@@ -1501,7 +1501,7 @@ custom kernel:
@lisp @lisp
(define %macbook41-full-config (define %macbook41-full-config
(append %macbook41-config-options (append %macbook41-config-options
%filesystems %file-systems
%efi-support %efi-support
%emulation %emulation
(@@@@ (gnu packages linux) %default-extra-linux-options))) (@@@@ (gnu packages linux) %default-extra-linux-options)))
...@@ -1517,8 +1517,8 @@ custom kernel: ...@@ -1517,8 +1517,8 @@ custom kernel:
#:extra-options %macbook41-config-options)) #:extra-options %macbook41-config-options))
@end lisp @end lisp
In the above example @code{%filesystems} is a collection of flags enabling In the above example @code{%file-systems} is a collection of flags enabling
different filesystem support, @code{%efi-support} enables EFI support and different file system support, @code{%efi-support} enables EFI support and
@code{%emulation} enables a x86_64-linux machine to act in 32-bit mode also. @code{%emulation} enables a x86_64-linux machine to act in 32-bit mode also.
@code{%default-extra-linux-options} are the ones quoted above, which had to be @code{%default-extra-linux-options} are the ones quoted above, which had to be
added in since they were replaced in the @code{extra-options} keyword. added in since they were replaced in the @code{extra-options} keyword.
...@@ -1582,7 +1582,7 @@ The second way to setup the kernel configuration makes more use of Guix's ...@@ -1582,7 +1582,7 @@ The second way to setup the kernel configuration makes more use of Guix's
features and allows you to share configuration segments between different features and allows you to share configuration segments between different
kernels. For example, all machines using EFI to boot have a number of EFI kernels. For example, all machines using EFI to boot have a number of EFI
configuration flags that they need. It is likely that all the kernels will configuration flags that they need. It is likely that all the kernels will
share a list of filesystems to support. By using variables it is easier to share a list of file systems to support. By using variables it is easier to
see at a glance what features are enabled and to make sure you don't have see at a glance what features are enabled and to make sure you don't have
features in one kernel but missing in another. features in one kernel but missing in another.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment