From 2c485e1050c64cff957e2a2e274d121014512b15 Mon Sep 17 00:00:00 2001 From: Aaron Ball Date: Sat, 4 Feb 2017 20:23:43 -0700 Subject: mkinitramfs:Removed some verbose messages --- mkinitramfs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mkinitramfs b/mkinitramfs index d7d3d61..547d436 100755 --- a/mkinitramfs +++ b/mkinitramfs @@ -109,7 +109,8 @@ function mkcpio { [[ -f ${fspath} ]] && echo -e "\n\n${fspath} exists. Overwriting.\n" # Create the initrd - find . -print0 | cpio --null -ov --format=newc | xz -C crc32 -v -9 -c > ${fspath} + echo "Building initrd to ${fspath}" + find . -print0 | cpio --null -o --format=newc | xz -C crc32 -9 -c > ${fspath} } -- cgit v1.2.3