From: Quentin Armitage Date: Thu, 17 Sep 2009 15:48:02 +0000 (+0200) Subject: dracut : remove extraneous output to screen during execution X-Git-Tag: 002~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bf84ee3c7ca8ee979c63a12d7129312e9af2cd39;p=thirdparty%2Fdracut.git dracut : remove extraneous output to screen during execution --- diff --git a/dracut b/dracut index f2bd271bb..b96ad5e0f 100755 --- a/dracut +++ b/dracut @@ -198,7 +198,6 @@ for moddir in "$dsrc/modules.d"/[0-9][0-9]*; do fi done unset moddir -echo $mods_to_load ## final stuff that has to happen @@ -254,7 +253,7 @@ if [[ $do_strip = yes ]] ; then done fi -( cd "$initdir"; find . |cpio -R 0:0 -H newc -o |gzip -9 > "$outfile"; ) +( cd "$initdir"; find . |cpio -R 0:0 -H newc -o --quiet |gzip -9 > "$outfile"; ) [[ $beverbose = yes ]] && ls -lh "$outfile"