aptitude install splashy splashy-themesAlright, so now i just needed to set a variable in /etc/defaults/splashy:
ENABLE_INITRAMFS=1This is only for people using an initramfs (e.g. if you use one of debian's stock kernels), so that the bootsplash starts as early as possible in the boot process. After setting that variable, a quick
update-initramfs -uis needed. Of course /boot/grub/menu.lst needs to be adjusted as well. The line starting with
#kopt=has to be extended with the following:
vga=795 splash quietSo updated grub with
update-gruband rebooted to test things out, but i didn't get very far. Fairly early, the boot process was interrupted with the follwoing message:
ERROR -3: couldn't splashy_start_splashy()Crap, what was that... After unsuccessfully googling for half an hour, the glorious thought of actually reading the documentation that comes with splashy crossed my mind. And there ist was, right there in /usr/share/doc/splashy/changelog.Debian.gz:
* Splashy doesn't work if libdirectfb-0.9.25 is installed at the same time as libdirectfb-1.0.x
Aha, a quick
dpkg -l libdirectfb*revealed that i indeed had both version of that library installed. The obvious move was to remove one the version. I chose that older one:
aptitude purge libdirectfb-0.9.25This action required the update of several packages that were dependent on the version of libdirectfb, but wth... Reboot.... Great, everything works as expected. One just has to remember that after a change of the splashy theme, (which can be done with splashy_config -s) requires the update of the initramfs.
1 comment:
Thank you for that tip.
I searched the web and even the splashy website and their wiki, but nowhere I could find this tip :(
Post a Comment