blob: 4ee1ca20cfa5524e2cd21c83737c72689f9995b6 [file] [log] [blame]
Amaury Pouly303c4862011-11-06 19:44:03 +00001/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2011 by Amaury Pouly
11 *
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.
16 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ****************************************************************************/
21
Dominik Riebeling346f1e02011-12-04 13:54:18 +000022#ifndef MKIMXBOOT_H
23#define MKIMXBOOT_H
24
Amaury Pouly303c4862011-11-06 19:44:03 +000025#include <stdbool.h>
26#include <stdint.h>
27#include <sys/types.h>
Amaury Pouly303c4862011-11-06 19:44:03 +000028
Dominik Riebeling346f1e02011-12-04 13:54:18 +000029#ifdef __cplusplus
30extern "C" {
31#endif
Amaury Pouly303c4862011-11-06 19:44:03 +000032enum imx_error_t
33{
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,
44};
45
46enum imx_output_type_t
47{
48 IMX_DUALBOOT = 0,
49 IMX_RECOVERY = 1,
50 IMX_SINGLEBOOT = 2,
51};
52
53struct imx_option_t
54{
55 bool debug;
56 enum imx_output_type_t output;
57};
58
59enum imx_error_t mkimxboot(const char *infile, const char *bootfile,
60 const char *outfile, struct imx_option_t opt);
Dominik Riebeling346f1e02011-12-04 13:54:18 +000061
62#ifdef __cplusplus
63}
64#endif
65#endif
66