aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès <ludovic.courtes@inria.fr>2020-03-24 16:56:19 +0100
committerLudovic Courtès <ludo@gnu.org>2020-03-24 16:56:19 +0100
commit53c594cb3f1f783fea18be6da23a863b00c14f5f (patch)
treea8e341fabeeba8e4900958d1cc6e83e0de075f50
parent8465f1f680ee67c2cca265d1c5871b46284f55f9 (diff)
downloadguix-53c594cb3f1f783fea18be6da23a863b00c14f5f.tar
guix-53c594cb3f1f783fea18be6da23a863b00c14f5f.tar.gz
pack: Do not store extended attributes in squashfs images.
* guix/scripts/pack.scm (squashfs-image)[build](mksquashfs): Pass "-no-xattrs".
-rw-r--r--guix/scripts/pack.scm4
1 files changed, 4 insertions, 0 deletions
diff --git a/guix/scripts/pack.scm b/guix/scripts/pack.scm
index 6829d7265f..b6fb73838d 100644
--- a/guix/scripts/pack.scm
+++ b/guix/scripts/pack.scm
@@ -373,6 +373,10 @@ added to the pack."
;; file system since it's useless in this case.
"-no-recovery"
+ ;; Do not attempt to store extended attributes.
+ ;; See <https://bugs.gnu.org/40043>.
+ "-no-xattrs"
+
;; Set file times and the file system creation time to
;; one second after the Epoch.
"-all-time" "1" "-mkfs-time" "1"