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.
This commit is contained in:
Ludovic Courtès 2015-02-08 19:00:01 +01:00
parent 46b23e1a43
commit 027981d6d7
1 changed files with 4 additions and 1 deletions

View File

@ -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