提交 f7644c0b 编写于 作者: P Prafulla Wadaskar 提交者: Wolfgang Denk

tools: mkimage : bugfix returns correct value for list command

List command always return "EXIT_SUCCESS" even in case of
failure by any means.

This patch return 0 if list command is sucessful,
returns negative value reported by check_header functions
Signed-off-by: NPrafulla Wadaskar <prafulla@marvell.com>
Signed-off-by: NWolfgang Denk <wd@denx.de>
上级 511c02f6
......@@ -27,7 +27,7 @@
extern unsigned long crc32 (unsigned long crc, const char *buf, unsigned int len);
static void copy_file (int, const char *, int);
static void usage (void);
static void image_verify_header (char *, int);
static int image_verify_header (char *, int);
static void fit_handle_file (void);
char *datafile;
......@@ -59,6 +59,7 @@ main (int argc, char **argv)
struct stat sbuf;
unsigned char *ptr;
char *name = "";
int retval;
cmdname = *argv;
......@@ -218,24 +219,24 @@ NXTARG: ;
exit (EXIT_FAILURE);
}
if (fdt_check_header (ptr)) {
/* old-style image */
image_verify_header ((char *)ptr, sbuf.st_size);
image_print_contents ((image_header_t *)ptr);
} else {
if (!(retval = fdt_check_header (ptr))) {
/* FIT image */
fit_print_contents (ptr);
} else if (!(retval = image_verify_header ((char *)ptr,
sbuf.st_size))) {
/* old-style image */
image_print_contents ((image_header_t *)ptr);
}
(void) munmap((void *)ptr, sbuf.st_size);
(void) close (ifd);
exit (EXIT_SUCCESS);
exit (retval);
} else if (fflag) {
/* Flattened Image Tree (FIT) format handling */
debug ("FIT format handling\n");
fit_handle_file ();
exit (EXIT_SUCCESS);
exit (retval);
}
/*
......@@ -479,7 +480,7 @@ usage ()
exit (EXIT_FAILURE);
}
static void
static int
image_verify_header (char *ptr, int image_size)
{
int len;
......@@ -499,7 +500,7 @@ image_verify_header (char *ptr, int image_size)
fprintf (stderr,
"%s: Bad Magic Number: \"%s\" is no valid image\n",
cmdname, imagefile);
exit (EXIT_FAILURE);
return -FDT_ERR_BADMAGIC;
}
data = (char *)hdr;
......@@ -512,7 +513,7 @@ image_verify_header (char *ptr, int image_size)
fprintf (stderr,
"%s: ERROR: \"%s\" has bad header checksum!\n",
cmdname, imagefile);
exit (EXIT_FAILURE);
return -FDT_ERR_BADSTATE;
}
data = ptr + sizeof(image_header_t);
......@@ -522,8 +523,9 @@ image_verify_header (char *ptr, int image_size)
fprintf (stderr,
"%s: ERROR: \"%s\" has corrupted data!\n",
cmdname, imagefile);
exit (EXIT_FAILURE);
return -FDT_ERR_BADSTRUCTURE;
}
return 0;
}
/**
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册