Package: usplash
Version: 0.4-43-3
Severity: minor
Tags: patch
Hi,
the attached patch changes the usplash_down script so that it is in line
with the rest of the init scripts using the nosplash logic.
--
David Härdeman
diff -ur ./usplash-0.4-43.orig/usplash_down ./usplash-0.4-43/usplash_down
--- ./usplash-0.4-43.orig/usplash_down 2007-03-16 00:47:06.000000000 +0100
+++ ./usplash-0.4-43/usplash_down 2007-05-09 20:31:31.000000000 +0200
@@ -1,12 +1,12 @@
#!/bin/sh
-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