Browse Source

add rdinfo command line parameter

print informational output though "quiet" is set
master
Harald Hoyer 16 years ago
parent
commit
3d4641fd98
  1. 3
      dracut.8
  2. 1
      modules.d/99base/dracut-lib.sh

3
dracut.8

@ -249,6 +249,9 @@ do not load kernel module <drivername> @@ -249,6 +249,9 @@ do not load kernel module <drivername>

.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

1
modules.d/99base/dracut-lib.sh

@ -65,6 +65,7 @@ info() { @@ -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" ] && \

Loading…
Cancel
Save