summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bootloader/common.c16
1 files changed, 2 insertions, 14 deletions
diff --git a/bootloader/common.c b/bootloader/common.c
index 8fb7cdef36..207d74ae9c 100644
--- a/bootloader/common.c
+++ b/bootloader/common.c
@@ -57,8 +57,6 @@ int line = 0;
57int remote_line = 0; 57int remote_line = 0;
58#endif 58#endif
59 59
60char printfbuf[256];
61
62void reset_screen(void) 60void reset_screen(void)
63{ 61{
64 lcd_clear_display(); 62 lcd_clear_display();
@@ -71,6 +69,7 @@ void reset_screen(void)
71 69
72int printf(const char *format, ...) 70int printf(const char *format, ...)
73{ 71{
72 static char printfbuf[256];
74 int len; 73 int len;
75 unsigned char *ptr; 74 unsigned char *ptr;
76 va_list ap; 75 va_list ap;
@@ -185,7 +184,7 @@ int load_firmware(unsigned char* buf, char* firmware, int buffer_size)
185 if(rc < 4) 184 if(rc < 4)
186 return EREAD_MODEL_FAILED; 185 return EREAD_MODEL_FAILED;
187 186
188 model[4] = 0; 187 model[4] = '\0';
189 188
190 printf("Model name: %s", model); 189 printf("Model name: %s", model);
191 printf("Loading %s", firmware); 190 printf("Loading %s", firmware);
@@ -240,17 +239,6 @@ int load_raw_firmware(unsigned char* buf, char* firmware, int buffer_size)
240 return len; 239 return len;
241} 240}
242 241
243/* These functions are present in the firmware library, but we reimplement
244 them here because the originals do a lot more than we want */
245int dbg_ports(void)
246{
247 return 0;
248}
249
250void mpeg_stop(void)
251{
252}
253
254#ifdef ROCKBOX_HAS_LOGF /* Logf display helper for the bootloader */ 242#ifdef ROCKBOX_HAS_LOGF /* Logf display helper for the bootloader */
255 243
256#define LINES (LCD_HEIGHT/SYSFONT_HEIGHT) 244#define LINES (LCD_HEIGHT/SYSFONT_HEIGHT)