From 10b92124b47fe00782e3075960330ee223872cf7 Mon Sep 17 00:00:00 2001 From: Michael Prokop Date: Wed, 25 Jul 2007 19:14:19 +0200 Subject: [PATCH] Rename bootoption splash into textsplash/tsplash --- debian/changelog | 8 ++++++++ grml-autoconfig | 10 ++++++---- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/debian/changelog b/debian/changelog index 6af6ef6..6e0ebc7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +grml-autoconfig (0.7.11) unstable; urgency=low + + * Rename bootoption splash into "textsplash" (and additionally + support "tsplash" as well) so users can use graphical splash + from Debian *or* textsplash of grml. + + -- Michael Prokop Wed, 25 Jul 2007 19:12:56 +0200 + grml-autoconfig (0.7.10) unstable; urgency=low * Add config_ipw3945() which works around broken ipw3945 driver, diff --git a/grml-autoconfig b/grml-autoconfig index fdeb518..8c2ba7e 100755 --- a/grml-autoconfig +++ b/grml-autoconfig @@ -4,7 +4,7 @@ # Authors: grml-team (grml.org), (c) Michael Prokop # Bug-Reports: see http://grml.org/bugs/ # License: This file is licensed under the GPL v2. -# Latest change: Mon Apr 16 19:34:17 CEST 2007 [mika] +# Latest change: Mit Jul 25 19:12:49 CEST 2007 [mika] ################################################################################ # http://wiki.debian.org/LSBInitScripts => @@ -17,6 +17,7 @@ # Default-Stop: ### END INIT INFO +# {{{ placeholder functions for restart/reload/stop if [[ $1 == "restart" ]] ; then echo "$0 restart - empty placeholder. Doing nothing but running." fi @@ -29,6 +30,7 @@ if [[ $1 == "stop" ]] ; then echo "$0 stop - empty placeholder. Doing nothing but exiting." exit 1 fi +# }}} # {{{ path, signals, umask, zsh, colors export PATH="/bin:/sbin:/usr/bin:/usr/sbin:/usr/X11R6/bin" @@ -43,7 +45,7 @@ setopt no_nomatch # avoid 'no matches found: ...' # {{{ source main files source /etc/grml/autoconfig # configuration file source /etc/grml/autoconfig.functions # functions -source /etc/grml/lsb-functions +source /etc/grml/lsb-functions # helper functions for smart display # }}} # {{{ mount important directories @@ -61,7 +63,7 @@ CMDLINE="$(cat /proc/cmdline)" checkvalue $CONFIG_DEBUG && config_debug SPLASH='' -if checkbootparam "splash" ; then +if checkbootparam "textsplash" -o checkbootparam "tsplash"; then SPLASH=1 fi @@ -274,7 +276,6 @@ if [ -z "$SPLASH" ] ; then stage=6 rundebugshell fi -# }}} if [ -n "$BOOTDEBUG" ] ; then CMDLINE="$(cat /proc/cmdline)" @@ -282,6 +283,7 @@ if [ -n "$BOOTDEBUG" ] ; then einfo "Bootoption debug detected. Printing kernel command line:" echo "$CMDLINE" fi +# }}} # {{{ Re-enable signals trap 2 3 11 -- 2.1.4