summaryrefslogtreecommitdiff
path: root/bootloader
diff options
context:
space:
mode:
Diffstat (limited to 'bootloader')
-rw-r--r--bootloader/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bootloader/main.c b/bootloader/main.c
index aeb470b658..4f1ee3c120 100644
--- a/bootloader/main.c
+++ b/bootloader/main.c
@@ -167,7 +167,6 @@ int main(void)
167 167
168 disk_init(); 168 disk_init();
169 169
170 /* FixMe: the same kind of mounting happens in usb.c, share the code. */
171 rc = disk_mount_all(); 170 rc = disk_mount_all();
172 if (rc<=0) 171 if (rc<=0)
173 { 172 {
@@ -178,6 +177,7 @@ int main(void)
178 } 177 }
179 178
180 lcd_puts(0, line++, "Loading firmware"); 179 lcd_puts(0, line++, "Loading firmware");
180 lcd_update();
181 i = load_firmware(); 181 i = load_firmware();
182 snprintf(buf, 256, "Result: %d", i); 182 snprintf(buf, 256, "Result: %d", i);
183 lcd_puts(0, line++, buf); 183 lcd_puts(0, line++, buf);