7c17128ceef7f10bc0ae2ecc8a1a7dee5a32f832
[grml-etc.git] / etc / init.d / bootsplash_start.sh
1 #!/bin/sh
2 # Filename:      bootsplash_start.sh
3 # Purpose:       first stage of textbased bootsplash
4 # Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
5 # Bug-Reports:   see http://grml.org/bugs/
6 # License:       This file is licensed under the GPL v2.
7 # Latest change: Fre Aug 04 12:20:36 CEST 2006 [mika]
8 ################################################################################
9
10 . /etc/grml/autoconfig.functions
11
12 if checkbootparam "splash" ; then
13 # make sure console font is set at this stage already
14   consolechars -f Lat15-Terminus16
15   chvt 7
16   /usr/bin/grml-bootsplash "">/dev/tty7
17 fi
18
19 ## END OF FILE #################################################################