Fix makefile conditions
[maemo-rb.git] / rbutil / mkimxboot / mkimxboot.h
blob4ee1ca20cfa5524e2cd21c83737c72689f9995b6
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2011 by Amaury Pouly
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
22 #ifndef MKIMXBOOT_H
23 #define MKIMXBOOT_H
25 #include <stdbool.h>
26 #include <stdint.h>
27 #include <sys/types.h>
29 #ifdef __cplusplus
30 extern "C" {
31 #endif
32 enum imx_error_t
34 IMX_SUCCESS = 0,
35 IMX_ERROR = -1,
36 IMX_OPEN_ERROR = -2,
37 IMX_READ_ERROR = -3,
38 IMX_NO_MATCH = -4,
39 IMX_BOOT_INVALID = -5,
40 IMX_BOOT_MISMATCH = -6,
41 IMX_BOOT_CHECKSUM_ERROR = -7,
42 IMX_DONT_KNOW_HOW_TO_PATCH = -8,
43 IMX_FIRST_SB_ERROR = -9,
46 enum imx_output_type_t
48 IMX_DUALBOOT = 0,
49 IMX_RECOVERY = 1,
50 IMX_SINGLEBOOT = 2,
53 struct imx_option_t
55 bool debug;
56 enum imx_output_type_t output;
59 enum imx_error_t mkimxboot(const char *infile, const char *bootfile,
60 const char *outfile, struct imx_option_t opt);
62 #ifdef __cplusplus
64 #endif
65 #endif