Bug#383327: usplash: Enable usplash by default
If a user installs the usplash package, it seems reasonable that he/she
expects it to be enabled by default. I've attached a simple patch which
reverses the logic of the initramfs script (i.e, splash by default which
can be disabled by the "nosplash" boot arg).
This will probably make life easier for the debian-installer since no
other changes than including usplash in the desktop task would be
necessary in order to install with usplash (a bug I was planning to file
later when a default theme is also available).
--
David Härdeman
diff -ur ./usplash-0.4-43.orig/initramfs/scripts/init-top/usplash ./usplash-0.4-43/initramfs/scripts/init-top/usplash
--- ./usplash-0.4-43.orig/initramfs/scripts/init-top/usplash 2007-03-16 00:47:06.000000000 +0100
+++ ./usplash-0.4-43/initramfs/scripts/init-top/usplash 2007-04-17 22:46:05.000000000 +0200
@@ -16,13 +16,13 @@
[ -f /etc/usplash.conf ] && . /etc/usplash.conf
-SPLASH=false
+SPLASH=true
VERBOSE=true
for x in $(cat /proc/cmdline); do
case $x in
- splash*)
- SPLASH=true
+ nosplash*)
+ SPLASH=false
;;
quiet*)
VERBOSE=false
Reply to: