From: Michael Prokop Date: Sun, 20 Jul 2008 20:58:00 +0000 (+0200) Subject: Output grml version in grml's live-initramfs script X-Git-Tag: 0.9.0~16 X-Git-Url: http://git.grml.org/?p=grml-live.git;a=commitdiff_plain;h=0de14d6dabc6bfa98934c2340f28dd9da6b479da Output grml version in grml's live-initramfs script --- diff --git a/etc/grml/fai/live-initramfs/grml-script.init-top b/etc/grml/fai/live-initramfs/grml-script.init-top index 40ab55d..78d65aa 100755 --- a/etc/grml/fai/live-initramfs/grml-script.init-top +++ b/etc/grml/fai/live-initramfs/grml-script.init-top @@ -113,8 +113,8 @@ ${RED} | | _| |_) | |\/| | | ${RED} | |_| | _ <| | | | |___ ${RED} \____|_| \_\_| |_|_____| -${WHITE}grml.org $GRML_VERSION- Linux for sysadmins and texttool users. -${NORMAL}" +${WHITE}grml.org - Linux for sysadmins and texttool users. +${WHITE}$GRML_VERSION${NORMAL}" fi echo "" @@ -127,6 +127,7 @@ if checkbootparam "splash" ; then fi # }}} +## /proc/cmdline handling {{{ # No kernel messages while probing modules: if ! grep -qe debug -qe verbose /proc/cmdline 2>/dev/null ; then [ -r /proc/sys/kernel/printk ] && echo "0" > /proc/sys/kernel/printk @@ -140,7 +141,8 @@ fi if grep -q 'boot=live' /proc/cmdline 2>/dev/null ; then log_grml_begin_msg "Finished early booting sequence." ; echo "$SUCCESS" log_grml_begin_msg "Searching for GRML file, this might take a few seconds..." - echo + echo fi +## }}} # vim: foldmethod=marker expandtab ai ft=sh