[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#491321: marked as done (initramfs-tools: does not support splashy)



Your message dated Tue, 28 Dec 2010 21:25:12 +0100
with message-id <20101228202512.GA14504@stro.at>
and subject line Re: Bug#491321: initramfs-tools: does not support splashy
has caused the Debian Bug report #491321,
regarding initramfs-tools: does not support splashy
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact owner@bugs.debian.org
immediately.)


-- 
491321: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=491321
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: initramfs-tools
Version: 0.92e
Severity: normal


While there are multiple calls to usplash in initramfs functions there
is no support for splashy. On systems that spend substantial part of
boot in the initramfs this is inadequate.

I attach a patch that should solve the problem but ideally the script
should be reworked so that the presence of splash solutions is tested
only in one place.

Thanks

Michal
--- /usr/share/initramfs-tools/scripts/functions	2008-04-02 22:19:58.000000000 +0200
+++ chroot/usr/share/initramfs-tools/scripts/functions	2008-07-18 16:12:45.000000000 +0200
@@ -25,7 +25,9 @@
 {
 	if [ -x /sbin/usplash_write ]; then
 		/sbin/usplash_write "TEXT $@"
-	fi
+	else ; if [ -x /sbin/splashy_update ] ; then
+		/sbin/splashy_update "TEXT $@"
+			fi ; fi
 	_log_msg "Begin: $@ ..."
 }
 
@@ -33,7 +35,9 @@
 {
 	if [ -x /sbin/usplash_write ]; then
 		/sbin/usplash_write "SUCCESS ok"
-	fi
+	else ; if [ -x /sbin/splashy_update ] ; then
+		/sbin/splashy_update "SUCCESS ok"
+	fi ; fi
 	_log_msg "Done."
 	update_progress
 }
@@ -51,14 +55,18 @@
 
 	if [ -x /sbin/usplash_write ]; then
 		/sbin/usplash_write "PROGRESS $PROGRESS_STATE"
-	fi
+	else ; if [ -x /sbin/splashy_update ] ; then
+		/sbin/splashy_update "PROGRESS $PROGRESS_STATE"
+	fi ; fi
 }
 
 panic()
 {
 	if [ -x /sbin/usplash_write ]; then
 		/sbin/usplash_write "QUIT"
-	fi
+	else ; if [ -x /sbin/splashy_update ] ; then
+		/sbin/splashy_update "QUIT"
+	fi ; fi
 	# Disallow console access
 	if [ -n "${panic}" ]; then
 		sleep ${panic}

--- End Message ---
--- Begin Message ---
On Wed, 24 Mar 2010, maximilian attems wrote:

> On Fri, 18 Jul 2008, Michal Suchanek wrote:
> 
> > While there are multiple calls to usplash in initramfs functions there
> > is no support for splashy. On systems that spend substantial part of
> > boot in the initramfs this is inadequate.
> 

thanks a lot for the provided patch.

Splashy will not be released with upcomming Squeeze and I do not expect
a lot of activity later on. You'll find a branch "maks/nuke_usplash"
http://git.debian.org/?p=kernel/initramfs-tools.git;a=summary
where any usplash ref is gone. Anyway out of scope of this bug.

Closing in order to further clean up initramfs-tools bugreports.

best wishes for 2011

-- 
maks


--- End Message ---

Reply to: