From 53c594cb3f1f783fea18be6da23a863b00c14f5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Tue, 24 Mar 2020 16:56:19 +0100 Subject: pack: Do not store extended attributes in squashfs images. * guix/scripts/pack.scm (squashfs-image)[build](mksquashfs): Pass "-no-xattrs". --- guix/scripts/pack.scm | 4 ++++ 1 file changed, 4 insertions(+) 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 . + "-no-xattrs" + ;; Set file times and the file system creation time to ;; one second after the Epoch. "-all-time" "1" "-mkfs-time" "1" -- cgit v1.2.3