summaryrefslogtreecommitdiff
path: root/rbutil/mktccboot/mktccboot.h
diff options
context:
space:
mode:
authorTomer Shalev <shalev.tomer@gmail.com>2009-10-29 21:31:50 +0000
committerTomer Shalev <shalev.tomer@gmail.com>2009-10-29 21:31:50 +0000
commitad785518111eabe4518dca485421e533186f63a5 (patch)
tree1933da66814ac5bb19b7b7f87bc2ab56ea27ed1d /rbutil/mktccboot/mktccboot.h
parent0f90f0b423674494a648a0bb8fd2cfe31f29b68b (diff)
downloadrockbox-ad785518111eabe4518dca485421e533186f63a5.tar.gz
rockbox-ad785518111eabe4518dca485421e533186f63a5.zip
FS#10728 - Cowon D2: Add support for D2 in rbutil
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23410 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'rbutil/mktccboot/mktccboot.h')
-rw-r--r--rbutil/mktccboot/mktccboot.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/rbutil/mktccboot/mktccboot.h b/rbutil/mktccboot/mktccboot.h
new file mode 100644
index 0000000000..6c6410c258
--- /dev/null
+++ b/rbutil/mktccboot/mktccboot.h
@@ -0,0 +1,42 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * mktccboot.h - a tool to inject a bootloader into a Telechips 77X/78X firmware
11 * file.
12 *
13 * Copyright (C) 2009 Tomer Shalev
14 *
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License
17 * as published by the Free Software Foundation; either version 2
18 * of the License, or (at your option) any later version.
19 *
20 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
21 * KIND, either express or implied.
22 *
23 ****************************************************************************/
24
25#ifndef _MKTCCBOOT_H_
26#define _MKTCCBOOT_H_
27
28#ifdef __cplusplus
29extern "C" {
30#endif
31
32/* Injects a bootloader into a Telechips 77X/78X firmware file */
33unsigned char *patch_firmware_tcc(unsigned char *of_buf, int of_size,
34 unsigned char *boot_buf, int boot_size, int *patched_size);
35
36unsigned char *file_read(char *filename, int *size);
37
38#ifdef __cplusplus
39};
40#endif
41
42#endif