mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
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 @@ (define (mksquashfs args)
|
||||||
(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"
|
||||||
|
|
Loading…
Reference in a new issue