<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>

<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
</head>
<body text="#000000" bgcolor="#ffffff">
Hello all.<br>
<br>
on this wiki page:<br>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
<a href="http://www.freedesktop.org/wiki/Software/Plymouth/Scripts">http://www.freedesktop.org/wiki/Software/Plymouth/Scripts</a><br>
the arguments for a BootProgressFunction should be progress, time.<br>
<br>
However, when I experimented with Plymouth scripts, I found that in
fact it is the opposite way round. It's time, progress.<br>
<br>
For example:<br>
# this code works<br>
fun progress_callback(time, progress)<br>
{<br>
&nbsp; progress_status = "We have waited " + time + " seconds and we are " +
(progress * 100) + " % done";<br>
&nbsp; // ...<br>
}<br>
Plymouth.SetBootProgressFunction(progress_callback);<br>
<br>
Am I right?<br>
Yours,<br>
David D Lowe<br>
</body>
</html>