Amaury Pouly | 303c486 | 2011-11-06 19:44:03 +0000 | [diff] [blame] | 1 | /*************************************************************************** |
| 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 Riebeling | 346f1e0 | 2011-12-04 13:54:18 +0000 | [diff] [blame] | 22 | #ifndef MKIMXBOOT_H |
| 23 | #define MKIMXBOOT_H |
| 24 | |
Amaury Pouly | 303c486 | 2011-11-06 19:44:03 +0000 | [diff] [blame] | 25 | #include <stdbool.h> |
| 26 | #include <stdint.h> |
| 27 | #include <sys/types.h> |
Amaury Pouly | 303c486 | 2011-11-06 19:44:03 +0000 | [diff] [blame] | 28 | |
Dominik Riebeling | 346f1e0 | 2011-12-04 13:54:18 +0000 | [diff] [blame] | 29 | #ifdef __cplusplus |
| 30 | extern "C" { |
| 31 | #endif |
Amaury Pouly | 303c486 | 2011-11-06 19:44:03 +0000 | [diff] [blame] | 32 | enum 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 | |
| 46 | enum imx_output_type_t |
| 47 | { |
| 48 | IMX_DUALBOOT = 0, |
| 49 | IMX_RECOVERY = 1, |
| 50 | IMX_SINGLEBOOT = 2, |
| 51 | }; |
| 52 | |
| 53 | struct imx_option_t |
| 54 | { |
| 55 | bool debug; |
| 56 | enum imx_output_type_t output; |
| 57 | }; |
| 58 | |
| 59 | enum imx_error_t mkimxboot(const char *infile, const char *bootfile, |
| 60 | const char *outfile, struct imx_option_t opt); |
Dominik Riebeling | 346f1e0 | 2011-12-04 13:54:18 +0000 | [diff] [blame] | 61 | |
| 62 | #ifdef __cplusplus |
| 63 | } |
| 64 | #endif |
| 65 | #endif |
| 66 | |