2007-01-28 18:42:11 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
2010-01-03 14:28:09 +00:00
|
|
|
* $Id$
|
2007-01-28 18:42:11 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 2005 by Linus Nielsen Feltzing
|
|
|
|
*
|
2008-06-28 18:10:04 +00:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2007-01-28 18:42:11 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2007-03-06 09:11:22 +00:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
2007-03-05 23:56:28 +00:00
|
|
|
/* Set this to true to enable lcd_update() in the printf function */
|
|
|
|
extern bool verbose;
|
|
|
|
|
2007-03-12 22:12:20 +00:00
|
|
|
/* Error types */
|
|
|
|
#define EATA -1
|
|
|
|
#define EDISK -2
|
|
|
|
#define EBOOTFILE -3
|
|
|
|
|
2007-01-28 18:42:11 +00:00
|
|
|
/* Functions common to all bootloaders */
|
2017-02-23 10:33:19 +00:00
|
|
|
#if !(CONFIG_PLATFORM & PLATFORM_HOSTED)
|
2007-01-28 18:42:11 +00:00
|
|
|
void reset_screen(void);
|
2010-08-02 20:34:47 +00:00
|
|
|
int printf(const char *format, ...);
|
2017-02-23 10:33:19 +00:00
|
|
|
#endif
|
2010-06-23 05:08:36 +00:00
|
|
|
void error(int errortype, int error, bool shutdown);
|
2007-01-28 18:42:11 +00:00
|
|
|
int load_raw_firmware(unsigned char* buf, char* firmware, int buffer_size);
|
2009-02-07 13:52:03 +00:00
|
|
|
#ifdef ROCKBOX_HAS_LOGF
|
|
|
|
void display_logf(void);
|
|
|
|
#endif
|