Merge pull request #115792 from ncfavier/patch-2

nixos/stage-1: make cpio quiet
This commit is contained in:
Linus Heckemann 2021-03-28 14:38:46 +02:00 committed by GitHub
commit 4aacd02d33
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -386,7 +386,7 @@ let
) config.boot.initrd.secrets)
}
(cd "$tmp" && find . -print0 | sort -z | cpio -o -H newc -R +0:+0 --reproducible --null) | \
(cd "$tmp" && find . -print0 | sort -z | cpio --quiet -o -H newc -R +0:+0 --reproducible --null) | \
${compressorExe} ${lib.escapeShellArgs initialRamdisk.compressorArgs} >> "$1"
'';