mirror of
https://gitlab.com/nonguix/nonguix.git
synced 2024-11-22 00:18:07 +01:00
nongnu: Keep the raw-initrd references file.
The raw-initrd contains a "references" file that is used to keep the static guile used in the initrd alive. This file is not part of the combined-initrd. It means that during garbage collection, the static guile could be collected making the system unbootable because the static guile is then not part of the store once the root is switched. In the combined-initrds procedure, make sure to concatenate all the possible references files of the underlying initrds into a top-level references file. Fixes: <https://gitlab.com/nonguix/nonguix/issues/111> Signed-off-by: Jonathan Brielmaier <jonathan.brielmaier@web.de>
This commit is contained in:
parent
ee2826e22b
commit
4ef2d82528
1 changed files with 21 additions and 4 deletions
|
@ -67,7 +67,9 @@ MICROCODE-PACKAGES, in the format expected by the kernel."
|
|||
"/initrd.cpio"))
|
||||
|
||||
(define (combined-initrd . initrds)
|
||||
"Return a combined initrd, the result of concatenating INITRDS."
|
||||
"Return a combined initrd, the result of concatenating INITRDS. This relies
|
||||
on the kernel ability to detect and load multiple initrds archives from a
|
||||
single file."
|
||||
(define builder
|
||||
(with-imported-modules (source-module-closure
|
||||
'((guix build utils)
|
||||
|
@ -75,13 +77,28 @@ MICROCODE-PACKAGES, in the format expected by the kernel."
|
|||
#:select? import-nonguix-module?)
|
||||
#~(begin
|
||||
(use-modules (guix build utils)
|
||||
(nonguix build utils))
|
||||
(nonguix build utils)
|
||||
(srfi srfi-1))
|
||||
|
||||
;; Use .img suffix since the result is no longer easily inspected by
|
||||
;; standard tools like cpio and gzip.
|
||||
(let ((initrd (string-append #$output "/initrd.img")))
|
||||
;;
|
||||
;; The initrds may contain "references" files to keep some items
|
||||
;; such as the static guile alive. Concatenate them in a single,
|
||||
;; top-level references file.
|
||||
(let ((initrd (string-append #$output "/initrd.img"))
|
||||
(references
|
||||
(filter-map
|
||||
(lambda (initrd)
|
||||
(let ((ref (string-append (dirname initrd)
|
||||
"/references")))
|
||||
(and (file-exists? ref) ref)))
|
||||
'#$initrds))
|
||||
(new-references
|
||||
(string-append #$output "/references")))
|
||||
(mkdir-p #$output)
|
||||
(concatenate-files '#$initrds initrd)))))
|
||||
(concatenate-files '#$initrds initrd)
|
||||
(concatenate-files references new-references)))))
|
||||
|
||||
(file-append (computed-file "combined-initrd" builder)
|
||||
"/initrd.img"))
|
||||
|
|
Loading…
Reference in a new issue