pack: Do not create a squashfs "recovery file".

Reported by Josh Marshall <Josh.Marshall@jax.org>.

* guix/scripts/pack.scm (squashfs-image)[build](mksquashfs): Always pass
"-no-recovery".
This commit is contained in:
Ludovic Courtès 2020-03-13 13:06:59 +01:00 committed by Ludovic Courtès
parent b829864d74
commit 24fb0dc0ab
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 4 additions and 0 deletions

View File

@ -369,6 +369,10 @@ added to the pack."
(apply invoke "mksquashfs"
`(,@args
;; Do not create a "recovery file" when appending to the
;; file system since it's useless in this case.
"-no-recovery"
;; Set file times and the file system creation time to
;; one second after the Epoch.
"-all-time" "1" "-mkfs-time" "1"