summaryrefslogtreecommitdiff
path: root/bootloader/common.h
diff options
context:
space:
mode:
Diffstat (limited to 'bootloader/common.h')
-rw-r--r--bootloader/common.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/bootloader/common.h b/bootloader/common.h
new file mode 100644
index 0000000000..7e001aa9ab
--- /dev/null
+++ b/bootloader/common.h
@@ -0,0 +1,34 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id: main.c 11997 2007-01-13 09:08:18Z miipekk $
9 *
10 * Copyright (C) 2005 by Linus Nielsen Feltzing
11 *
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.
14 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
17 *
18 ****************************************************************************/
19
20/* Error codes */
21#define EOK 0
22#define EFILE_NOT_FOUND -1
23#define EREAD_CHKSUM_FAILED -2
24#define EREAD_MODEL_FAILED -3
25#define EREAD_IMAGE_FAILED -4
26#define EBAD_CHKSUM -5
27#define EFILE_TOO_BIG -6
28
29/* Functions common to all bootloaders */
30void reset_screen(void);
31void printf(const char *format, ...);
32char *strerror(int error);
33int load_firmware(unsigned char* buf, char* firmware, int buffer_size);
34int load_raw_firmware(unsigned char* buf, char* firmware, int buffer_size);