1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2006 by Greg White
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
37 #include "backlight.h"
38 #include "backlight-target.h"
44 #include "rbunicode.h"
50 char version
[] = APPSVERSION
;
54 unsigned char* loadbuffer
;
57 int(*kernel_entry
)(void);
65 lcd_setfont(FONT_SYSFIXED
);
69 /* Enter USB mode without USB thread */
70 if(usb_detect() == USB_INSERTED
)
72 const char msg
[] = "Bootloader USB mode";
74 lcd_putsxy( (LCD_WIDTH
- (SYSFONT_WIDTH
* strlen(msg
))) / 2,
75 (LCD_HEIGHT
- SYSFONT_HEIGHT
) / 2, msg
);
82 while (usb_detect() == USB_INSERTED
)
95 /* Show debug messages if button is pressed */
96 if(button_read_device())
99 printf("Rockbox boot loader");
100 printf("Version %s", version
);
102 sleep(50); /* ATA seems to error without this pause */
113 rc
= disk_mount_all();
119 printf("Loading firmware");
121 loadbuffer
= (unsigned char*) 0x31000000;
122 buffer_size
= (unsigned char*)0x31400000 - loadbuffer
;
124 rc
= load_firmware(loadbuffer
, BOOTFILE
, buffer_size
);
126 error(EBOOTFILE
, rc
);
130 kernel_entry
= (void*) loadbuffer
;