summaryrefslogtreecommitdiff
path: root/bootloader/gigabeat-s.c
diff options
context:
space:
mode:
Diffstat (limited to 'bootloader/gigabeat-s.c')
-rw-r--r--bootloader/gigabeat-s.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/bootloader/gigabeat-s.c b/bootloader/gigabeat-s.c
index 57eb18ec56..cd3b1df545 100644
--- a/bootloader/gigabeat-s.c
+++ b/bootloader/gigabeat-s.c
@@ -334,14 +334,17 @@ void main(void)
334 /* Flush and invalidate all caches (because vectors were written) */ 334 /* Flush and invalidate all caches (because vectors were written) */
335 invalidate_icache(); 335 invalidate_icache();
336 336
337 lcd_clear_display();
338 printf("Gigabeat S Rockbox Bootloader");
339 printf("Version %s", version);
340 system_init(); 337 system_init();
341 kernel_init(); 338 kernel_init();
342 339
343 enable_interrupt(IRQ_FIQ_STATUS); 340 enable_interrupt(IRQ_FIQ_STATUS);
344 341
342 lcd_init_device();
343 lcd_clear_display();
344
345 printf("Gigabeat S Rockbox Bootloader");
346 printf("Version %s", version);
347
345 /* Initialize KPP so we can poll the button states */ 348 /* Initialize KPP so we can poll the button states */
346 button_init_device(); 349 button_init_device();
347 350