From 449adc611f00ceeb31cd09e8a0aaf7324805e46b Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Wed, 15 Jul 2009 09:56:37 +0200 Subject: [PATCH] add info() and vinfo() to dracut-lib - corrected the loglevel for warn() - prepended with "dracut: " for kmesg to seperate from kernel messages you can pipe to vinfo() for informational messages --- modules.d/99base/dracut-lib.sh | 26 +++++++++++++++++++++++--- 1 file changed, 23 insertions(+), 3 deletions(-) diff --git a/modules.d/99base/dracut-lib.sh b/modules.d/99base/dracut-lib.sh index a26949c..aa808a7 100644 --- a/modules.d/99base/dracut-lib.sh +++ b/modules.d/99base/dracut-lib.sh @@ -29,13 +29,33 @@ source_all() { } die() { - printf "<1>FATAL: $1\n" > /dev/kmsg - printf "<1>Refusing to continue\n" > /dev/kmsg + { + echo "<1>dracut: FATAL: $@"; + echo "<1>dracut: Refusing to continue"; + } > /dev/kmsg + + { + echo "dracut: FATAL: $@"; + echo "dracut: Refusing to continue"; + } > /dev/console + exit 1 } warn() { - printf "<1>Warning: $1\n" > /dev/kmsg + echo "<4>dracut Warning: $@" > /dev/kmsg + echo "dracut Warning: $@" > /dev/console +} + +info() { + echo "<6>dracut: $@" > /dev/kmsg + echo "dracut: $@" > /dev/console +} + +vinfo() { + while read line; do + info $line; + done } check_occurances() { -- 2.7.4