summaryrefslogtreecommitdiff
path: root/bootloader
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2005-02-07 01:47:47 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2005-02-07 01:47:47 +0000
commit2a3856f613caa8fc13083a7b932f7b7a283fc85b (patch)
treee794f672040a77fbc734fe4516666431174a8d7d /bootloader
parentd4313ce88b479b896fb7d48afc4da5fcdc20d97b (diff)
downloadrockbox-2a3856f613caa8fc13083a7b932f7b7a283fc85b.tar.gz
rockbox-2a3856f613caa8fc13083a7b932f7b7a283fc85b.zip
Better feedback when booting
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5825 a1c6a512-1295-4272-9138-f99709370657
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);