diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2005-02-07 01:47:47 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2005-02-07 01:47:47 +0000 |
| commit | 2a3856f613caa8fc13083a7b932f7b7a283fc85b (patch) | |
| tree | e794f672040a77fbc734fe4516666431174a8d7d | |
| parent | d4313ce88b479b896fb7d48afc4da5fcdc20d97b (diff) | |
| download | rockbox-2a3856f613caa8fc13083a7b932f7b7a283fc85b.zip rockbox-2a3856f613caa8fc13083a7b932f7b7a283fc85b.tar.gz rockbox-2a3856f613caa8fc13083a7b932f7b7a283fc85b.tar.bz2 rockbox-2a3856f613caa8fc13083a7b932f7b7a283fc85b.tar.xz | |
Better feedback when booting
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5825 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | bootloader/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bootloader/main.c b/bootloader/main.c index aeb470b..4f1ee3c 100644 --- a/bootloader/main.c +++ b/bootloader/main.c @@ -167,7 +167,6 @@ int main(void) disk_init(); - /* FixMe: the same kind of mounting happens in usb.c, share the code. */ rc = disk_mount_all(); if (rc<=0) { @@ -178,6 +177,7 @@ int main(void) } lcd_puts(0, line++, "Loading firmware"); + lcd_update(); i = load_firmware(); snprintf(buf, 256, "Result: %d", i); lcd_puts(0, line++, buf); |