Warning!

Notice: the grml team is migrating from Mercurial to Git.
Please visit git.grml.org instead!

bootsplash: use tty14 and chvt
authorMichael Prokop <mika@grml.org>
Wed Jul 25 20:00:10 2007 +0200 (16 months ago)
changeset 14669a46c214c14
manifest69a46c214c14
parent 14594519d94666e
child 147ff9b7aabed84
tag0.7.11
bootsplash: use tty14 and chvt
debian/changelog
grml-autoconfig
--- a/debian/changelog Wed Jul 25 19:27:18 2007 +0200
+++ b/debian/changelog Wed Jul 25 20:00:10 2007 +0200
@@ -2,7 +2,8 @@ grml-autoconfig (0.7.11) unstable; urgen
* Rename bootoption splash into "textsplash" (and additionally
support "tsplash" as well) so users can use graphical splash
- from Debian *or* textsplash of grml.
+ from Debian *or* textsplash of grml. Use tty14 instead of tty7
+ and switch there using chvt.
* Fix code regression of checkbootparam (use '||' instead of '-o')
-- Michael Prokop <mika@grml.org> Wed, 25 Jul 2007 19:12:56 +0200
--- a/grml-autoconfig Wed Jul 25 19:27:18 2007 +0200
+++ b/grml-autoconfig Wed Jul 25 20:00:10 2007 +0200
@@ -4,7 +4,7 @@
# 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: Mit Jul 25 19:12:49 CEST 2007 [mika]
+# Latest change: Mit Jul 25 19:59:07 CEST 2007 [mika]
################################################################################
# http://wiki.debian.org/LSBInitScripts =>
@@ -64,7 +64,7 @@ checkvalue $CONFIG_DEBUG && config_debug
SPLASH=''
if checkbootparam "textsplash" || checkbootparam "tsplash"; then
- SPLASH=1
+ SPLASH=1
fi
if [ -z "$SPLASH" ] ; then
@@ -89,7 +89,10 @@ if checkbootparam "forensic" ; then
rundebugshell
fi
-[ -n "$SPLASH" ] && /usr/bin/grml-bootsplash "|">/dev/tty7
+if [ -n "$SPLASH" ] ; then
+ /usr/bin/grml-bootsplash "|">/dev/tty14
+ chvt 14
+fi
checkvalue $CONFIG_LANGUAGE && config_language
@@ -101,7 +104,7 @@ checkvalue $CONFIG_FWTIMEOUT && config_f
checkvalue $CONFIG_FIX_PASSWD && config_fix_passwd
-[ -n "$SPLASH" ] && /usr/bin/grml-bootsplash "||">/dev/tty7
+[ -n "$SPLASH" ] && /usr/bin/grml-bootsplash "||">/dev/tty14
checkvalue $CONFIG_HOSTNAME && config_hostname
@@ -123,7 +126,7 @@ checkvalue $CONFIG_TIMEZONE && config_ti
checkvalue $CONFIG_FAST && config_fast
-[ -n "$SPLASH" ] && /usr/bin/grml-bootsplash "|||">/dev/tty7
+[ -n "$SPLASH" ] && /usr/bin/grml-bootsplash "|||">/dev/tty14
checkvalue $CONFIG_ENVIRONMENT && config_environment
@@ -142,7 +145,7 @@ checkvalue $CONFIG_FIREWIRE_DEV && confi
checkvalue $CONFIG_TESTCD && config_testcd
-[ -n "$SPLASH" ] && /usr/bin/grml-bootsplash "||||">/dev/tty7
+[ -n "$SPLASH" ] && /usr/bin/grml-bootsplash "||||">/dev/tty14
checkvalue $CONFIG_DISCOVER && config_discover
@@ -158,7 +161,7 @@ checkvalue $CONFIG_MODULES && config_mod
checkvalue $CONFIG_ACPI_APM && config_acpi_apm
-[ -n "$SPLASH" ] && /usr/bin/grml-bootsplash "|||||">/dev/tty7
+[ -n "$SPLASH" ] && /usr/bin/grml-bootsplash "|||||">/dev/tty14
checkvalue $CONFIG_PCMCIA && config_pcmcia
@@ -168,7 +171,7 @@ checkvalue $CONFIG_PCMCIA && config_pcmc
checkvalue $CONFIG_KEYBOARD && config_keyboard
-[ -n "$SPLASH" ] && /usr/bin/grml-bootsplash "||||||">/dev/tty7
+[ -n "$SPLASH" ] && /usr/bin/grml-bootsplash "||||||">/dev/tty14
checkvalue $CONFIG_BLIND && config_blind
@@ -188,7 +191,7 @@ checkvalue $CONFIG_MOUSE && config_mouse
checkvalue $CONFIG_DHCP && config_dhcp
-[ -n "$SPLASH" ] && /usr/bin/grml-bootsplash "|||||||">/dev/tty7
+[ -n "$SPLASH" ] && /usr/bin/grml-bootsplash "|||||||">/dev/tty14
checkvalue $CONFIG_SYSLOG && config_syslog
@@ -208,7 +211,7 @@ checkvalue $CONFIG_DEBS && config_debs
checkvalue $CONFIG_SCRIPTS && config_scripts
-[ -n "$SPLASH" ] && /usr/bin/grml-bootsplash "||||||||">/dev/tty7
+[ -n "$SPLASH" ] && /usr/bin/grml-bootsplash "||||||||">/dev/tty14
checkvalue $CONFIG_CDROM_SCRIPTS && config_cdrom_scripts
@@ -226,7 +229,7 @@ checkvalue $CONFIG_WONDERSHAPER && confi
checkvalue $CONFIG_GPM && config_gpm
-[ -n "$SPLASH" ] && /usr/bin/grml-bootsplash "|||||||||">/dev/tty7
+[ -n "$SPLASH" ] && /usr/bin/grml-bootsplash "|||||||||">/dev/tty14
checkvalue $CONFIG_SERVICES && config_services
@@ -236,7 +239,7 @@ checkvalue $CONFIG_NETIPV6 && config_ipv
checkvalue $CONFIG_DEBNET && config_debnet
-[ -n "$SPLASH" ] && /usr/bin/grml-bootsplash "||||||||||">/dev/tty7
+[ -n "$SPLASH" ] && /usr/bin/grml-bootsplash "||||||||||">/dev/tty14
checkvalue $CONFIG_CONSOLE && config_console
@@ -262,7 +265,10 @@ checkvalue $CONFIG_DISTRI && config_dist
checkvalue $CONFIG_BLANKING && config_blanking
-[ -n "$SPLASH" ] && /usr/bin/grml-bootsplash "|||||||||||">/dev/tty7
+if [ -n "$SPLASH" ] ; then
+ /usr/bin/grml-bootsplash "|||||||||||">/dev/tty14
+ chvt 1
+fi
checkvalue $CONFIG_GRML2HD && config_grml2hd