diff options
Diffstat (limited to 'common/cmd_ximg.c')
| -rw-r--r-- | common/cmd_ximg.c | 117 | 
1 files changed, 60 insertions, 57 deletions
| diff --git a/common/cmd_ximg.c b/common/cmd_ximg.c index 52e061449..4dadc3709 100644 --- a/common/cmd_ximg.c +++ b/common/cmd_ximg.c @@ -38,14 +38,13 @@ int  do_imgextract(cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])  {  	ulong addr = load_addr, dest = 0; -	ulong data, len, checksum; +	ulong data, len;  	ulong *len_ptr;  	int i, verify, part = 0;  	char pbuf[10], *s; -	image_header_t header; +	image_header_t *hdr; -	s = getenv("verify"); -	verify = (s && (*s == 'n')) ? 0 : 1; +	verify = getenv_verify ();  	if (argc > 1) {  		addr = simple_strtoul(argv[1], NULL, 16); @@ -57,72 +56,76 @@ do_imgextract(cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])  		dest = simple_strtoul(argv[3], NULL, 16);  	} -	printf("## Copying from image at %08lx ...\n", addr); -	/* Copy header so we can blank CRC field for re-calculation */ -	memmove(&header, (char *) addr, sizeof (image_header_t)); +	switch (gen_image_get_format ((void *)addr)) { +	case IMAGE_FORMAT_LEGACY: -	if (ntohl(header.ih_magic) != IH_MAGIC) { -		printf("Bad Magic Number\n"); -		return 1; -	} - -	data = (ulong) & header; -	len = sizeof (image_header_t); - -	checksum = ntohl(header.ih_hcrc); -	header.ih_hcrc = 0; - -	if (crc32(0, (char *) data, len) != checksum) { -		printf("Bad Header Checksum\n"); -		return 1; -	} -#ifdef DEBUG -	print_image_hdr((image_header_t *) addr); -#endif - -	data = addr + sizeof (image_header_t); -	len = ntohl(header.ih_size); +		printf("## Copying from legacy image at %08lx ...\n", addr); +		hdr = (image_header_t *)addr; +		if (!image_check_magic (hdr)) { +			printf("Bad Magic Number\n"); +			return 1; +		} -	if (header.ih_type != IH_TYPE_MULTI) { -		printf("Wrong Image Type for %s command\n", cmdtp->name); -		return 1; -	} +		if (!image_check_hcrc (hdr)) { +			printf("Bad Header Checksum\n"); +			return 1; +		} +	#ifdef DEBUG +		image_print_contents (hdr); +	#endif -	if (header.ih_comp != IH_COMP_NONE) { -		printf("Wrong Compression Type for %s command\n", cmdtp->name); -		return 1; -	} +		if (!image_check_type (hdr, IH_TYPE_MULTI)) { +			printf("Wrong Image Type for %s command\n", +					cmdtp->name); +			return 1; +		} -	if (verify) { -		printf("   Verifying Checksum ... "); -		if (crc32(0, (char *) data, len) != ntohl(header.ih_dcrc)) { -			printf("Bad Data CRC\n"); +		if (image_get_comp (hdr) != IH_COMP_NONE) { +			printf("Wrong Compression Type for %s command\n", +					cmdtp->name);  			return 1;  		} -		printf("OK\n"); -	} -	len_ptr = (ulong *) data; +		if (verify) { +			printf("   Verifying Checksum ... "); +			if (!image_check_dcrc (hdr)) { +				printf("Bad Data CRC\n"); +				return 1; +			} +			printf("OK\n"); +		} + +		data = image_get_data (hdr); +		len_ptr = (ulong *) data; -	data += 4;		/* terminator */ -	for (i = 0; len_ptr[i]; ++i) { -		data += 4; -		if (argc > 2 && part > i) { -			u_long tail; -			len = ntohl(len_ptr[i]); -			tail = len % 4; -			data += len; -			if (tail) { -				data += 4 - tail; +		data += 4;		/* terminator */ +		for (i = 0; len_ptr[i]; ++i) { +			data += 4; +			if (argc > 2 && part > i) { +				u_long tail; +				len = image_to_cpu (len_ptr[i]); +				tail = len % 4; +				data += len; +				if (tail) { +					data += 4 - tail; +				}  			}  		} -	} -	if (argc > 2 && part >= i) { -		printf("Bad Image Part\n"); +		if (argc > 2 && part >= i) { +			printf("Bad Image Part\n"); +			return 1; +		} +		len = image_to_cpu (len_ptr[part]); +#if defined(CONFIG_FIT) +	case IMAGE_FORMAT_FIT: +		fit_unsupported ("imxtract"); +		return 1; +#endif +	default: +		puts ("Invalid image type for imxtract\n");  		return 1;  	} -	len = ntohl(len_ptr[part]);  	if (argc > 3) {  		memcpy((char *) dest, (char *) data, len); |