/etc/init.d/bootsplash*: Adjust check for bootoption tsplash + textsplash
[grml-etc.git] / etc / init.d / bootsplash_start.sh
index 7c17128..dc10337 100755 (executable)
@@ -4,16 +4,16 @@
 # Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
 # Bug-Reports:   see http://grml.org/bugs/
 # License:       This file is licensed under the GPL v2.
-# Latest change: Fre Aug 04 12:20:36 CEST 2006 [mika]
+# Latest change: Don Sep 20 15:56:54 CEST 2007 [mika]
 ################################################################################
 
 . /etc/grml/autoconfig.functions
 
-if checkbootparam "splash" ; then
-# make sure console font is set at this stage already
+if checkbootparam "textsplash" || checkbootparam "tsplash"; then
+  # make sure console font is set at this stage already
   consolechars -f Lat15-Terminus16
-  chvt 7
-  /usr/bin/grml-bootsplash "">/dev/tty7
+  chvt 14
+  /usr/bin/grml-bootsplash "">/dev/tty14
 fi
 
 ## END OF FILE #################################################################