blob: 194df1ceca20eba4e2795cf32ee1f6499a45312c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
/*
* Pixel (pixel@mandriva.com)
*
* Copyright 2004 Mandriva
*
* This software may be freely redistributed under the terms of the GNU
* public license.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*/
#include <stdio.h>
#include "bootsplash.h"
#include "frontend.h"
#include "log.h"
static int total_size;
static float previous;
static FILE* splash = NULL;
static void update_progression_only(int current_size)
{
if (splash && total_size) {
float ratio = (float) (current_size + 1) / total_size;
if (ratio > previous + 0.01) {
fprintf(splash, "show %d\n", (int) (ratio * 65534));
fflush(splash);
previous = ratio;
}
}
}
static void open_bootsplash(void)
{
if (!splash) splash = fopen("/proc/splash", "w");
if (!splash) log_message("opening /proc/splash failed");
}
void exit_bootsplash(void)
{
log_message("exiting bootsplash");
open_bootsplash();
if (splash) {
fprintf(splash, "verbose\n");
fflush(splash);
}
}
void init_progression(char *msg, int size)
{
previous = 0; total_size = size;
open_bootsplash();
update_progression_only(0);
init_progression_raw(msg, size);
}
void update_progression(int current_size)
{
update_progression_only(current_size);
update_progression_raw(current_size);
}
void end_progression(void)
{
end_progression_raw();
}
|