diff options
author | Aaron Ball <nullspoon@oper.io> | 2017-02-04 20:23:43 -0700 |
---|---|---|
committer | Aaron Ball <nullspoon@oper.io> | 2017-02-04 20:23:43 -0700 |
commit | 2c485e1050c64cff957e2a2e274d121014512b15 (patch) | |
tree | dbcc6bda58369994c61813d9f3b5d7df3fa06828 /mkinitramfs | |
parent | c7814a04421e5aaad186778f3cfc122b6bad252a (diff) | |
download | mkinitramfs-2c485e1050c64cff957e2a2e274d121014512b15.tar.gz mkinitramfs-2c485e1050c64cff957e2a2e274d121014512b15.tar.xz |
mkinitramfs:Removed some verbose messages
Diffstat (limited to 'mkinitramfs')
-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} } |