For a while now I've been wanting to install bootsplash on my system. After some time, I came upon this:
http://www.linuxvillage.ca/support/bootsplash.html
and bootsplash there was. However, when it comes to "Setting console screen modes and fonts" on boot up, there is noticeable flicker (silent or no silent mode). After searching some more, I found:
viewtopic.php?t=10983
Tornado wrote:Found it @
http://debcentral.org/modules/newbb/vie ... pic_id=269
I had to comment out unicode_stop in /etc/init.d/console-screen.sh and /etc/init.d/keymap.sh to prevent the bootsplash from flickering during boot.
Works to, I'm such a good little newbie !!!
P.S.
In console-screen.sh I only commented this out -
if test "$CHARMAP" = "UTF-8"
then
unicode_start 2> /dev/null || true
else
# unicode_stop 2> /dev/null|| true
fi
and in /etc/init.d/keymap.sh
if [ "$CHARMAP" = "UTF-8" ]; then
unicode_start 2> /dev/null || true
else
# unicode_stop 2> /dev/null || true
fi
Until they find a better fix....
But this just breaks the keymap.sh and console-screen.sh files. Am I wrong about this?!?!?!?!
So for now, I have to stick with my flickering bootsplash. If anyone has any ideas, please help.
valerij