From: Harald Hoyer Date: Fri, 14 Aug 2009 14:05:18 +0000 (+0200) Subject: add rdinfo command line parameter X-Git-Tag: 0.9~17 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3d4641fd98ffbb634c20b99e1c18d37ba4c817b1;p=thirdparty%2Fdracut.git add rdinfo command line parameter print informational output though "quiet" is set --- diff --git a/dracut.8 b/dracut.8 index 65b6dead2..229cd2a00 100644 --- a/dracut.8 +++ b/dracut.8 @@ -249,6 +249,9 @@ do not load kernel module .SH Debug .TP +.B rdinfo +print informational output though "quiet" is set +.TP .B rdshell allow dropping to a shell, if root mounting fails .TP diff --git a/modules.d/99base/dracut-lib.sh b/modules.d/99base/dracut-lib.sh index 31b95b064..3c6cf86fe 100644 --- a/modules.d/99base/dracut-lib.sh +++ b/modules.d/99base/dracut-lib.sh @@ -65,6 +65,7 @@ info() { if [ -z "$DRACUT_QUIET" ]; then DRACUT_QUIET="no" getarg quiet && DRACUT_QUIET="yes" + getarg rdinfo && DRACUT_QUIET="no" fi echo "<6>dracut: $@" > /dev/kmsg [ "$DRACUT_QUIET" != "yes" ] && \