guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

05/06: pack: Do not create a squashfs "recovery file".


From: guix-commits
Subject: 05/06: pack: Do not create a squashfs "recovery file".
Date: Fri, 13 Mar 2020 12:34:08 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 24fb0dc0ab34ebb49509a3d5b4d84d8488670807
Author: Ludovic Courtès <address@hidden>
AuthorDate: Fri Mar 13 13:06:59 2020 +0100

    pack: Do not create a squashfs "recovery file".
    
    Reported by Josh Marshall <address@hidden>.
    
    * guix/scripts/pack.scm (squashfs-image)[build](mksquashfs): Always pass
    "-no-recovery".
---
 guix/scripts/pack.scm | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/guix/scripts/pack.scm b/guix/scripts/pack.scm
index 414e2d4..652b4c6 100644
--- a/guix/scripts/pack.scm
+++ b/guix/scripts/pack.scm
@@ -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"



reply via email to

[Prev in Thread] Current Thread [Next in Thread]