summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/stdio-frontend.c
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2004-12-20 18:51:31 +0000
committerPascal Rigaux <pixel@mandriva.com>2004-12-20 18:51:31 +0000
commita47038859dc156d832fdae38fff319b6585a5694 (patch)
treee071847dee82923596891bf167cd3d5f00285146 /mdk-stage1/stdio-frontend.c
parent6f768666517680dbfe3bf9b128e6f9a038707140 (diff)
downloaddrakx-a47038859dc156d832fdae38fff319b6585a5694.tar
drakx-a47038859dc156d832fdae38fff319b6585a5694.tar.gz
drakx-a47038859dc156d832fdae38fff319b6585a5694.tar.bz2
drakx-a47038859dc156d832fdae38fff319b6585a5694.tar.xz
drakx-a47038859dc156d832fdae38fff319b6585a5694.zip
minimal bootsplash stage1 support
Diffstat (limited to 'mdk-stage1/stdio-frontend.c')
-rw-r--r--mdk-stage1/stdio-frontend.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/mdk-stage1/stdio-frontend.c b/mdk-stage1/stdio-frontend.c
index fa6bb7358..ffa306811 100644
--- a/mdk-stage1/stdio-frontend.c
+++ b/mdk-stage1/stdio-frontend.c
@@ -200,7 +200,7 @@ void remove_wait_message(void)
static int size_progress;
static int actually_drawn;
#define PROGRESS_SIZE 45
-void init_progression(char *msg, int size)
+void init_progression_raw(char *msg, int size)
{
int i;
size_progress = size;
@@ -215,7 +215,7 @@ void init_progression(char *msg, int size)
printf("\n");
}
-void update_progression(int current_size)
+void update_progression_raw(int current_size)
{
if (size_progress) {
if (current_size > size_progress)
@@ -230,10 +230,10 @@ void update_progression(int current_size)
fflush(stdout);
}
-void end_progression(void)
+void end_progression_raw(void)
{
if (size_progress) {
- update_progression(size_progress);
+ update_progression_raw(size_progress);
printf("]\n");
} else
printf(" done.\n");