X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=etc%2Fgrml%2Ffai%2Flive-initramfs%2Fgrml-script.init-top;h=5afaca40ed4fdb172b8270acd796e29076c46600;hb=29b5cdf12747383a098f454df35783c5cb3418e0;hp=367f79f8534bdcdb2f768133bc412a0af359a9e5;hpb=3a3e2c9f200e7eccf7842b33510b78a12b45e19b;p=grml-live.git diff --git a/etc/grml/fai/live-initramfs/grml-script.init-top b/etc/grml/fai/live-initramfs/grml-script.init-top index 367f79f..5afaca4 100755 --- a/etc/grml/fai/live-initramfs/grml-script.init-top +++ b/etc/grml/fai/live-initramfs/grml-script.init-top @@ -1,5 +1,22 @@ #!/bin/sh +# prereq header {{{ +# without this header booting will fail with: +# "PANIC: Circular dependancy. Exiting." +PREREQ="" +prereqs() +{ + echo "$PREREQ" +} +case $1 in +# get pre-requisites +prereqs) + prereqs + exit 0 + ;; +esac +# }}} + # helper functions {{{ if grep -qe debug -qe verbose /proc/cmdline 2>/dev/null ; then @@ -98,6 +115,10 @@ if [ -r /etc/grml_version ] ; then GRML_VERSION="$(cat /etc/grml_version)" fi +if checkbootparam "quiet" ; then + echo -e "${CLEAR}" +fi + if [ -n "$DISTRI" ] ; then SPLASH=" ${RED} $DISTRI @@ -140,7 +161,7 @@ fi # Make sure we support squashfs: if ! grep -q squashfs /proc/filesystems ; then - modprobe -q squashfs || log_grml_failure_msg "Warning: look like you do not have support for squashfs" + modprobe -q squashfs || log_grml_failure_msg "Warning: looks like you do not have support for squashfs" fi if grep -q 'boot=live' /proc/cmdline 2>/dev/null ; then