summaryrefslogtreecommitdiffstats
path: root/bootloader/xduoox3.c
diff options
context:
space:
mode:
Diffstat (limited to 'bootloader/xduoox3.c')
-rw-r--r--bootloader/xduoox3.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/bootloader/xduoox3.c b/bootloader/xduoox3.c
index 7ed672affe..b53d92b647 100644
--- a/bootloader/xduoox3.c
+++ b/bootloader/xduoox3.c
@@ -136,7 +136,7 @@ static int boot_rockbox(void)
{
int rc;
- printf("Mounting disk...\n");
+ printf("Mounting disk...");
while((rc = disk_mount_all()) <= 0) {
verbose = true;
@@ -148,12 +148,13 @@ static int boot_rockbox(void)
#endif
}
- printf("Loading firmware...\n");
+ printf("Loading firmware...");
rc = load_firmware((unsigned char *)CONFIG_SDRAM_START, BOOTFILE, 0x400000);
if(rc <= EFILE_EMPTY) {
+ printf("!! " BOOTFILE);
return rc;
} else {
- printf("Starting Rockbox...\n");
+ printf("Starting Rockbox...");
adc_close(); /* Disable SADC, seems to fix the re-init Rockbox does */
disable_interrupt();
exec((void*) CONFIG_SDRAM_START);
@@ -223,8 +224,8 @@ int main(void)
reset_screen();
#ifndef SHOW_LOGO
- printf(MODEL_NAME" Rockbox Bootloader\n");
- printf("Version %s\n", rbversion);
+ printf(MODEL_NAME" Rockbox Bootloader");
+ printf("Version %s", rbversion);
#endif
rc = boot_rockbox();