From: Harald Hoyer Date: Thu, 5 Nov 2009 12:35:44 +0000 (+0100) Subject: dracut-functions: dinfo() on missing firmware, rather than dwarning() X-Git-Tag: 003~67 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=116cb137fee38eb0c5c44610de5166d9e50ab10b;p=thirdparty%2Fdracut.git dracut-functions: dinfo() on missing firmware, rather than dwarning() --- diff --git a/dracut-functions b/dracut-functions index 499c092d4..331b723c6 100755 --- a/dracut-functions +++ b/dracut-functions @@ -417,7 +417,7 @@ install_kmod_with_fw() { fi done if [[ $found != yes ]]; then - dwarning "Possible missing firmware ${fw} for module ${mod}.ko" + dinfo "Possible missing firmware ${fw} for module ${mod}.ko" fi done }