1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2006 by Greg White
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
35 #include "backlight.h"
36 #include "backlight-target.h"
42 #include "rbunicode.h"
48 char version
[] = APPSVERSION
;
52 unsigned char* loadbuffer
;
55 int(*kernel_entry
)(void);
63 lcd_setfont(FONT_SYSFIXED
);
67 /* Enter USB mode without USB thread */
68 if(usb_detect() == USB_INSERTED
)
70 const char msg
[] = "Bootloader USB mode";
72 lcd_putsxy( (LCD_WIDTH
- (SYSFONT_WIDTH
* strlen(msg
))) / 2,
73 (LCD_HEIGHT
- SYSFONT_HEIGHT
) / 2, msg
);
80 while (usb_detect() == USB_INSERTED
)
93 /* Show debug messages if button is pressed */
94 if(button_read_device())
97 printf("Rockbox boot loader");
98 printf("Version %s", version
);
100 sleep(50); /* ATA seems to error without this pause */
111 rc
= disk_mount_all();
117 printf("Loading firmware");
119 loadbuffer
= (unsigned char*) 0x31000000;
120 buffer_size
= (unsigned char*)0x31400000 - loadbuffer
;
122 rc
= load_firmware(loadbuffer
, BOOTFILE
, buffer_size
);
124 error(EBOOTFILE
, rc
);
128 kernel_entry
= (void*) loadbuffer
;