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"
44 #include "mmu-meg-fx.h"
48 char version
[] = APPSVERSION
;
52 unsigned char* loadbuffer
;
55 int(*kernel_entry
)(void);
64 lcd_setfont(FONT_SYSFIXED
);
68 /* Enter USB mode without USB thread */
69 if(usb_detect() == USB_INSERTED
)
71 const char msg
[] = "Bootloader USB mode";
73 lcd_putsxy( (LCD_WIDTH
- (SYSFONT_WIDTH
* strlen(msg
))) / 2,
74 (LCD_HEIGHT
- SYSFONT_HEIGHT
) / 2, msg
);
81 while (usb_detect() == USB_INSERTED
)
94 /* Show debug messages if button is pressed */
95 if(button_read_device())
98 printf("Rockbox boot loader");
99 printf("Version %s", version
);
110 rc
= disk_mount_all();
116 printf("Loading firmware");
118 loadbuffer
= (unsigned char*) 0x100;
119 buffer_size
= (unsigned char*)0x400000 - loadbuffer
;
121 rc
= load_firmware(loadbuffer
, BOOTFILE
, buffer_size
);
123 error(EBOOTFILE
, rc
);
127 kernel_entry
= (void*) loadbuffer
;