On Sat, Jan 10, 2009 at 07:55:09PM +0100, Guido Günther wrote: > An easy (though ugly) work around would be to check for "splashy" on the > commandline and skip unicode setup in these cases. For completeness I'm attaching the current hack I'm using against console-common to make the boot continue. -- Guido
>From 09d9d33ee73d3b72f6701d3975526c7c243fce50 Mon Sep 17 00:00:00 2001 From: =?utf-8?q?Guido=20G=C3=BCnther?= <[email protected]> Date: Sat, 10 Jan 2009 20:29:23 +0100 Subject: [PATCH] hack around hanging splash
--- debian/keymap.sh | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/debian/keymap.sh b/debian/keymap.sh index a4ae0c3..24ec88d 100644 --- a/debian/keymap.sh +++ b/debian/keymap.sh @@ -16,6 +16,11 @@ fi . /lib/lsb/init-functions +# hack around hanging splash (#500831) +if [ -f /lib/init/rw/splashy/splashy-stopped-keymap ]; then + exit 0 +fi + # Avoid messing with splashy boot # Thanks to John Hughes and Marc Haber for suggestions pidof splashy >/dev/null && -- 1.6.0.6

