diff options
| author | Stefano Babic <sbabic@denx.de> | 2011-09-15 23:50:15 +0000 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2011-10-05 22:03:11 +0200 | 
| commit | 163967905f9e41232d5f7c525a9811a200fe30ba (patch) | |
| tree | c6e00b01a655e2a3ce2e5c3f2da57a53644d71b6 /tools/ublimage.c | |
| parent | 9400f8fa7c064fd1e1c7ae714920f6067eec3ca4 (diff) | |
| download | olio-uboot-2014.01-163967905f9e41232d5f7c525a9811a200fe30ba.tar.xz olio-uboot-2014.01-163967905f9e41232d5f7c525a9811a200fe30ba.zip | |
mkimage: ublimage must return if the header is not verified
Each image handler must return a not-zero velue if the
header is not recognized to allow the main program to
iterate to the next handler.
Signed-off-by: Stefano Babic <sbabic@denx.de>
CC: Heiko Schocher <hs@denx.de>
Acked-by: Heiko Schocher <hs@denx.de>
Diffstat (limited to 'tools/ublimage.c')
| -rw-r--r-- | tools/ublimage.c | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/tools/ublimage.c b/tools/ublimage.c index 99874622d..d6b401738 100644 --- a/tools/ublimage.c +++ b/tools/ublimage.c @@ -214,6 +214,11 @@ static int ublimage_check_image_types(uint8_t type)  static int ublimage_verify_header(unsigned char *ptr, int image_size,  			struct mkimage_params *params)  { +	struct ubl_header *ubl_hdr = (struct ubl_header *)ptr; + +	if ((ubl_hdr->magic & 0xFFFFFF00) != UBL_MAGIC_BASE) +		return -1; +  	return 0;  } |