~ruther/guix-local

027981d6d710ca1bb0f645820cf46d4b7bb4dbe1 — Ludovic Courtès 11 years ago 46b23e1
doc: Remove ".ko" extension in 'base-initrd' example.

Reported by Marek Benc.

* doc/guix.texi (Initial RAM Disk): Remove ".ko" from the 'base-initrd'
  example.  Add a comment.
1 files changed, 4 insertions(+), 1 deletions(-)

M doc/guix.texi
M doc/guix.texi => doc/guix.texi +4 -1
@@ 4822,8 4822,11 @@ system declaration like this:

@example
(initrd (lambda (file-systems . rest)
          ;; Create a standard initrd that has modules "foo.ko"
          ;; and "bar.ko", as well as their dependencies, in
          ;; addition to the modules available by default.
          (apply base-initrd file-systems
                 #:extra-modules '("my.ko" "modules.ko")
                 #:extra-modules '("foo" "bar")
                 rest)))
@end example