diff options
-rwxr-xr-x | mkinitramfs | 3 |
1 files changed, 2 insertions, 1 deletions
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} } |