diff options
| author | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2008-06-18 22:30:59 +0000 |
|---|---|---|
| committer | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2008-06-18 22:30:59 +0000 |
| commit | c47988034fbd5d7de8fcda2a87224bdb0b5dcfe6 (patch) | |
| tree | deb96279c6952871b5c0f47ec25879bb73240afd /tools/mkboot.h | |
| parent | efbd2b8d7a9295f1a5544717c1b86527cc27ac7b (diff) | |
| download | rockbox-c47988034fbd5d7de8fcda2a87224bdb0b5dcfe6.zip rockbox-c47988034fbd5d7de8fcda2a87224bdb0b5dcfe6.tar.gz rockbox-c47988034fbd5d7de8fcda2a87224bdb0b5dcfe6.tar.bz2 rockbox-c47988034fbd5d7de8fcda2a87224bdb0b5dcfe6.tar.xz | |
Factor out scramble / mkboot functions to allow easier reuse (for rbutil).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17732 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools/mkboot.h')
| -rw-r--r-- | tools/mkboot.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/tools/mkboot.h b/tools/mkboot.h new file mode 100644 index 0000000..ea98621 --- /dev/null +++ b/tools/mkboot.h @@ -0,0 +1,33 @@ +/*************************************************************************** + * __________ __ ___. + * Open \______ \ ____ ____ | | _\_ |__ _______ ___ + * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / + * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < + * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ + * \/ \/ \/ \/ \/ + * $Id$ + * + * Copyright (C) 2008 by Dominik Riebeling + * + * All files in this archive are subject to the GNU General Public License. + * See the file COPYING in the source tree root for full license agreement. + * + * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY + * KIND, either express or implied. + * + ****************************************************************************/ + +#ifndef MKBOOT_H +#define MKBOOT_H + +#ifdef __cplusplus +extern "C" { +#endif + +int mkboot(const char* infile, const char* bootfile, const char* outfile, int origin); + +#ifdef __cplusplus +} +#endif +#endif + |