summary refs log tree commit diff
diff options
context:
space:
mode:
authorLinus Heckemann <git@sphalerite.org>2021-03-28 14:38:46 +0200
committerGitHub <noreply@github.com>2021-03-28 14:38:46 +0200
commit4aacd02d330582775e6f4564b0ca95b8b02cf407 (patch)
tree8c87523be8bf2eecb3af476834532216d320d74b
parent89a08da8445a242abc3aec733abcb317966641c8 (diff)
parentd4d5fc6bd77d721f52aeadf104e608812ac3d654 (diff)
downloadnixpkgs-4aacd02d330582775e6f4564b0ca95b8b02cf407.tar
nixpkgs-4aacd02d330582775e6f4564b0ca95b8b02cf407.tar.gz
nixpkgs-4aacd02d330582775e6f4564b0ca95b8b02cf407.tar.bz2
nixpkgs-4aacd02d330582775e6f4564b0ca95b8b02cf407.tar.lz
nixpkgs-4aacd02d330582775e6f4564b0ca95b8b02cf407.tar.xz
nixpkgs-4aacd02d330582775e6f4564b0ca95b8b02cf407.tar.zst
nixpkgs-4aacd02d330582775e6f4564b0ca95b8b02cf407.zip
Merge pull request #115792 from ncfavier/patch-2
nixos/stage-1: make cpio quiet
-rw-r--r--nixos/modules/system/boot/stage-1.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/system/boot/stage-1.nix b/nixos/modules/system/boot/stage-1.nix
index 4074f2e0235..d606d473d91 100644
--- a/nixos/modules/system/boot/stage-1.nix
+++ b/nixos/modules/system/boot/stage-1.nix
@@ -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"
       '';