FS#10740 - rbutil: Test Cowon D2 OF file for CRC consistency before patching
[kugel-rb.git] / rbutil / mktccboot / mktccboot.h
blob2df2c5450688dce7b79d3a8ca7bedaf99061b427
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * mktccboot.h - a tool to inject a bootloader into a Telechips 77X/78X firmware
11 * file.
13 * Copyright (C) 2009 Tomer Shalev
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.
20 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
21 * KIND, either express or implied.
23 ****************************************************************************/
25 #ifndef _MKTCCBOOT_H_
26 #define _MKTCCBOOT_H_
28 #ifdef __cplusplus
29 extern "C" {
30 #endif
32 /* Injects a bootloader into a Telechips 77X/78X firmware file */
33 unsigned char *patch_firmware_tcc(unsigned char *of_buf, int of_size,
34 unsigned char *boot_buf, int boot_size, int *patched_size);
36 unsigned char *file_read(char *filename, int *size);
38 /* Test TCC firmware file for consistency using CRC test */
39 int test_firmware_tcc(unsigned char* buf, int length);
41 #ifdef __cplusplus
43 #endif
45 #endif