dc10337e89db62a7662384cc3d4541822c75fc46
[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: Don Sep 20 15:56:54 CEST 2007 [mika]
8 ################################################################################
9
10 . /etc/grml/autoconfig.functions
11
12 if checkbootparam "textsplash" || checkbootparam "tsplash"; then
13   # make sure console font is set at this stage already
14   consolechars -f Lat15-Terminus16
15   chvt 14
16   /usr/bin/grml-bootsplash "">/dev/tty14
17 fi
18
19 ## END OF FILE #################################################################