The threading model should be set from configure, not config.h.
[maemo-rb.git] / rbutil / mkimxboot / mkimxboot.h
blob5be87b31e0d69e62c7b6776370c607fca413ecac
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_VARIANT_MISMATCH = -9,
44 IMX_FIRST_SB_ERROR = -10,
47 enum imx_output_type_t
49 IMX_DUALBOOT = 0,
50 IMX_RECOVERY = 1,
51 IMX_SINGLEBOOT = 2,
54 /* Supported models */
55 enum imx_model_t
57 MODEL_UNKNOWN = -1,
58 MODEL_FUZEPLUS = 0,
59 MODEL_ZENXFI2 = 1,
60 MODEL_ZENXFI3 = 2,
61 /* new models go here */
63 NUM_MODELS
66 /* Supported firmware variants */
67 enum imx_firmware_variant_t
69 VARIANT_DEFAULT = 0,
70 /* For the Creative ZEN X-Fi2 */
71 VARIANT_ZENXFI2_NAND,
72 VARIANT_ZENXFI2_SD,
73 VARIANT_ZENXFI2_RECOVERY,
74 /* Last */
75 VARIANT_COUNT
78 struct imx_option_t
80 bool debug;
81 enum imx_output_type_t output;
82 enum imx_firmware_variant_t fw_variant;
85 void dump_imx_dev_info(const char *prefix);
86 enum imx_error_t mkimxboot(const char *infile, const char *bootfile,
87 const char *outfile, struct imx_option_t opt);
89 #ifdef __cplusplus
91 #endif
92 #endif