pack: Do not store extended attributes in squashfs images.

* guix/scripts/pack.scm (squashfs-image)[build](mksquashfs): Pass "-no-xattrs".
This commit is contained in:
Ludovic Courtès 2020-03-24 16:56:19 +01:00 committed by Ludovic Courtès
parent 8465f1f680
commit 53c594cb3f
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 4 additions and 0 deletions

View File

@ -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"