diff options
author | Jordan Hand | 2019-03-05 14:47:56 -0800 |
---|---|---|
committer | Tom Rini | 2019-03-08 11:31:44 -0500 |
commit | d32aa3cae44e618048ff7f378577d44f9b6d6dcc (patch) | |
tree | fc4cfbe78b9629281ee4a8c1ccead9204afa9224 /tools/mkimage.c | |
parent | 280fafff165428bc69db221faaccaf4edfc32d9d (diff) |
fdt: Fix FIT header verification in mkimage and conduct same checks as bootm
FIT header verification in mkimage was treating a return code as a boolean,
which meant that failures in validating the fit were seen as successes.
Additionally, mkimage was checking all formats to find a header which
passes validation, rather than using the image type specified to
mkimage.
checkpatch.pl checks for lines ending with '(' and alignment matching
open parentheses are ignored to keep with existing coding style.
Signed-off-by: Jordan Hand <jorhand@microsoft.com>
Diffstat (limited to 'tools/mkimage.c')
-rw-r--r-- | tools/mkimage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/mkimage.c b/tools/mkimage.c index ea5ed542ab9..2899adff810 100644 --- a/tools/mkimage.c +++ b/tools/mkimage.c @@ -409,7 +409,7 @@ int main(int argc, char **argv) * Print the image information for matched image type * Returns the error code if not matched */ - retval = imagetool_verify_print_header(ptr, &sbuf, + retval = imagetool_verify_print_header_by_type(ptr, &sbuf, tparams, ¶ms); (void) munmap((void *)ptr, sbuf.st_size); |