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:
parent
b829864d74
commit
24fb0dc0ab
1 changed files with 4 additions and 0 deletions
|
@ -369,6 +369,10 @@ added to the pack."
|
||||||
(apply invoke "mksquashfs"
|
(apply invoke "mksquashfs"
|
||||||
`(,@args
|
`(,@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
|
;; Set file times and the file system creation time to
|
||||||
;; one second after the Epoch.
|
;; one second after the Epoch.
|
||||||
"-all-time" "1" "-mkfs-time" "1"
|
"-all-time" "1" "-mkfs-time" "1"
|
||||||
|
|
Reference in a new issue