Skip to content
Snippets Groups Projects
Commit 583323ca authored by Ludovic Courtès's avatar Ludovic Courtès
Browse files

linux-initrd: Populate cpio archives in a deterministic order.

* gnu/build/linux-initrd.scm (write-cpio-archive)[files]: Use 'sort' instead
  of 'reverse'.
parent e8277f90
No related branches found
No related tags found
No related merge requests found
...@@ -49,21 +49,22 @@ (define* (write-cpio-archive output directory ...@@ -49,21 +49,22 @@ (define* (write-cpio-archive output directory
;; directories." ;; directories."
(define files (define files
;; XXX: Use a deterministic order. ;; Use 'sort' so that (1) the order of files is deterministic, and (2)
(reverse ;; directories appear before the files they contain.
(file-system-fold (const #t) ;enter? (sort (file-system-fold (const #t) ;enter?
(lambda (file stat result) ;leaf (lambda (file stat result) ;leaf
(cons file result)) (cons file result))
(lambda (dir stat result) ;down (lambda (dir stat result) ;down
(if (string=? dir directory) (if (string=? dir directory)
result result
(cons dir result))) (cons dir result)))
(lambda (file stat result) (lambda (file stat result)
result) result)
(const #f) ;skip (const #f) ;skip
(const #f) ;error (const #f) ;error
'() '()
directory))) directory)
string<?))
(call-with-output-file output (call-with-output-file output
(lambda (port) (lambda (port)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment