summary refs log tree commit diff
path: root/nixos/modules/system/boot/stage-1.nix
diff options
context:
space:
mode:
authorNaïm Favier <n@monade.li>2021-03-10 17:46:53 +0100
committerGitHub <noreply@github.com>2021-03-10 17:46:53 +0100
commitd4d5fc6bd77d721f52aeadf104e608812ac3d654 (patch)
treed7bfdd0a5115b4bbebcb89033110be3f3c34d9e4 /nixos/modules/system/boot/stage-1.nix
parent0a8d1d2bd283681db223adf5fbe73cbebc7c86c4 (diff)
downloadnixpkgs-d4d5fc6bd77d721f52aeadf104e608812ac3d654.tar
nixpkgs-d4d5fc6bd77d721f52aeadf104e608812ac3d654.tar.gz
nixpkgs-d4d5fc6bd77d721f52aeadf104e608812ac3d654.tar.bz2
nixpkgs-d4d5fc6bd77d721f52aeadf104e608812ac3d654.tar.lz
nixpkgs-d4d5fc6bd77d721f52aeadf104e608812ac3d654.tar.xz
nixpkgs-d4d5fc6bd77d721f52aeadf104e608812ac3d654.tar.zst
nixpkgs-d4d5fc6bd77d721f52aeadf104e608812ac3d654.zip
nixos/stage-1: make cpio quiet
Diffstat (limited to 'nixos/modules/system/boot/stage-1.nix')
-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"
       '';