mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
system: 'read-boot-parameters' allow initrd to be missing.
* gnu/system.scm (read-boot-parameters): Allow initrd to be missing.
This commit is contained in:
parent
aa864ebdb0
commit
12906d3e2a
1 changed files with 2 additions and 1 deletions
|
@ -351,7 +351,8 @@ (define device-sexp->device
|
|||
(('initrd ('string-append directory file)) ;the old format
|
||||
(string-append directory file))
|
||||
(('initrd (? string? file))
|
||||
file)))
|
||||
file)
|
||||
(#f #f)))
|
||||
|
||||
(multiboot-modules
|
||||
(match (assq 'multiboot-modules rest)
|
||||
|
|
Loading…
Reference in a new issue