1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
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 ****************************************************************************/
26 #include "mkimxboot.h"
31 enum imx_firmware_variant_t variant
;
34 struct imx_variant_t imx_variants
[] =
36 { "default", VARIANT_DEFAULT
},
37 { "zenxfi2-recovery", VARIANT_ZENXFI2_RECOVERY
},
38 { "zenxfi2-nand", VARIANT_ZENXFI2_NAND
},
39 { "zenxfi2-sd", VARIANT_ZENXFI2_SD
},
40 { "zenxfistyle-recovery", VARIANT_ZENXFISTYLE_RECOVERY
},
43 #define NR_VARIANTS sizeof(imx_variants) / sizeof(imx_variants[0])
45 static void usage(void)
47 printf("Usage: elftosb [options | file]...\n");
49 printf(" -?/--help\tDisplay this message\n");
50 printf(" -o <file>\tSet output file\n");
51 printf(" -i <file>\tSet input file\n");
52 printf(" -b <file>\tSet boot file\n");
53 printf(" -d/--debug\tEnable debug output\n");
54 printf(" -t <type>\tSet type (dualboot, singleboot, recovery)\n");
55 printf(" -v <v>\tSet variant\n");
56 printf(" -x\t\tDump device informations\n");
57 printf(" -w\tExtract the original firmware\n");
58 printf(" -p <ver>\tForce product and component version\n");
59 printf("Supported variants: (default is standard)\n");
61 for(size_t i
= 0; i
< NR_VARIANTS
; i
++)
65 printf("%s", imx_variants
[i
].name
);
68 printf("By default a dualboot image is built\n");
72 int main(int argc
, char *argv
[])
76 char *bootfile
= NULL
;
77 enum imx_firmware_variant_t variant
= VARIANT_DEFAULT
;
78 enum imx_output_type_t type
= IMX_DUALBOOT
;
80 bool extract_of
= false;
81 const char *force_version
= NULL
;
88 static struct option long_options
[] =
90 {"help", no_argument
, 0, '?'},
91 {"in-file", no_argument
, 0, 'i'},
92 {"out-file", required_argument
, 0, 'o'},
93 {"boot-file", required_argument
, 0, 'b'},
94 {"debug", no_argument
, 0, 'd'},
95 {"type", required_argument
, 0, 't'},
96 {"variant", required_argument
, 0, 'v'},
97 {"dev-info", no_argument
, 0, 'x'},
101 int c
= getopt_long(argc
, argv
, "?di:o:b:t:v:xwp:", long_options
, NULL
);
124 if(strcmp(optarg
, "dualboot") == 0)
126 else if(strcmp(optarg
, "singleboot") == 0)
127 type
= IMX_SINGLEBOOT
;
128 else if(strcmp(optarg
, "recovery") == 0)
132 printf("Invalid boot type '%s'\n", optarg
);
138 for(size_t i
= 0; i
< NR_VARIANTS
; i
++)
140 if(strcmp(optarg
, imx_variants
[i
].name
) == 0)
142 variant
= imx_variants
[i
].variant
;
146 printf("Invalid variant '%s'\n", optarg
);
153 dump_imx_dev_info("");
154 printf("variant mapping:\n");
155 for(int i
= 0; i
< sizeof(imx_variants
) / sizeof(imx_variants
[0]); i
++)
156 printf(" %s -> variant=%d\n", imx_variants
[i
].name
, imx_variants
[i
].variant
);
162 force_version
= optarg
;
171 printf("You must specify an input file\n");
176 printf("You must specify an output file\n");
179 if(!bootfile
&& !extract_of
)
181 printf("You must specify an boot file\n");
186 printf("Extra arguments on command line\n");
192 enum imx_error_t err
= extract_firmware(infile
, variant
, outfile
);
193 printf("Result: %d\n", err
);
197 struct imx_option_t opt
;
198 memset(&opt
, 0, sizeof(opt
));
201 opt
.fw_variant
= variant
;
202 opt
.force_version
= force_version
;
203 enum imx_error_t err
= mkimxboot(infile
, bootfile
, outfile
, opt
);
204 printf("Result: %d\n", err
);