me
/
guix
Archived
1
0
Fork 0

system: 'read-boot-parameters' allow initrd to be missing.

* gnu/system.scm (read-boot-parameters): Allow initrd to be missing.
Jan (janneke) Nieuwenhuizen 2020-06-29 15:24:45 +02:00
parent aa864ebdb0
commit 12906d3e2a
No known key found for this signature in database
GPG Key ID: F3C1A0D9C1D65273
1 changed files with 2 additions and 1 deletions

View File

@ -351,7 +351,8 @@ file system labels."
(('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)