mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
linux-initrd: Allow extra modules to be passed to 'base-initrd'.
* gnu/system/linux-initrd.scm (base-initrd): Add #:extra-modules parameter.
This commit is contained in:
parent
3485716fd9
commit
fa16f84502
1 changed files with 8 additions and 1 deletions
|
@ -206,6 +206,7 @@ (define* (base-initrd file-systems
|
|||
qemu-networking?
|
||||
virtio?
|
||||
volatile-root?
|
||||
(extra-modules '())
|
||||
guile-modules-in-chroot?)
|
||||
"Return a monadic derivation that builds a generic initrd. FILE-SYSTEMS is
|
||||
a list of file-systems to be mounted by the initrd, possibly in addition to
|
||||
|
@ -218,6 +219,11 @@ (define* (base-initrd file-systems
|
|||
When VOLATILE-ROOT? is true, the root file system is writable but any changes
|
||||
to it are lost.
|
||||
|
||||
The initrd is automatically populated with all the kernel modules necessary
|
||||
for FILE-SYSTEMS and for the given options. However, additional kernel
|
||||
modules can be listed in EXTRA-MODULES. They will be added to the initrd, and
|
||||
loaded at boot time in the order in which they appear.
|
||||
|
||||
When GUILE-MODULES-IN-CHROOT? is true, make core Guile modules available in
|
||||
the new root. This is necessary is the file specified as '--load' needs
|
||||
access to these modules (which is the case if it wants to even just print an
|
||||
|
@ -252,7 +258,8 @@ (define linux-modules
|
|||
'())
|
||||
,@(if volatile-root?
|
||||
'("fuse.ko")
|
||||
'())))
|
||||
'())
|
||||
,@extra-modules))
|
||||
|
||||
(define helper-packages
|
||||
;; Packages to be copied on the initrd.
|
||||
|
|
Loading…
Reference in a new issue