diff options
| author | Stefano Babic <sbabic@denx.de> | 2013-06-26 18:08:37 +0200 | 
|---|---|---|
| committer | Stefano Babic <sbabic@denx.de> | 2013-08-31 15:06:28 +0200 | 
| commit | 3150f92c29677244977ddfb6cbbf7e25f3581a79 (patch) | |
| tree | 97bdcc17eacdd1c4af4bdd1b1e6a2e6cb8269c23 /tools/imximage.c | |
| parent | 4655d40f34c8141651d10c9e0b17511728618bda (diff) | |
| download | olio-uboot-2014.01-3150f92c29677244977ddfb6cbbf7e25f3581a79.tar.xz olio-uboot-2014.01-3150f92c29677244977ddfb6cbbf7e25f3581a79.zip | |
tools: rename mximage_flash_offset to imximage_ivt_offset
This better reflects the naming from the Reference Manual
as well as fits better since "flash" is not really applicabe
for SATA.
Signed-off-by: Stefano Babic <sbabic@denx.de>
Diffstat (limited to 'tools/imximage.c')
| -rw-r--r-- | tools/imximage.c | 17 | 
1 files changed, 9 insertions, 8 deletions
| diff --git a/tools/imximage.c b/tools/imximage.c index a347b9bc2..494446e0c 100644 --- a/tools/imximage.c +++ b/tools/imximage.c @@ -52,7 +52,8 @@ static table_entry_t imximage_versions[] = {  static struct imx_header imximage_header;  static uint32_t imximage_version; -static uint32_t imximage_flash_offset; +/* Image Vector Table Offset */ +static uint32_t imximage_ivt_offset;  static set_dcd_val_t set_dcd_val;  static set_dcd_rst_t set_dcd_rst; @@ -328,9 +329,9 @@ static void parse_cfg_cmd(struct imx_header *imxhdr, int32_t cmd, char *token,  		set_hdr_func(imxhdr);  		break;  	case CMD_BOOT_FROM: -		imximage_flash_offset = get_table_entry_id(imximage_bootops, +		imximage_ivt_offset = get_table_entry_id(imximage_bootops,  					"imximage boot option", token); -		if (imximage_flash_offset == -1) { +		if (imximage_ivt_offset == -1) {  			fprintf(stderr, "Error: %s[%d] -Invalid boot device"  				"(%s)\n", name, lineno, token);  			exit(EXIT_FAILURE); @@ -339,7 +340,7 @@ static void parse_cfg_cmd(struct imx_header *imxhdr, int32_t cmd, char *token,  			cmd_ver_first = 0;  		break;  	case CMD_BOOT_OFFSET: -		imximage_flash_offset = get_cfg_value(token, name, lineno); +		imximage_ivt_offset = get_cfg_value(token, name, lineno);  		if (unlikely(cmd_ver_first != 1))  			cmd_ver_first = 0;  		break; @@ -440,7 +441,7 @@ static uint32_t parse_cfg_file(struct imx_header *imxhdr, char *name)  	fclose(fd);  	/* Exit if there is no BOOT_FROM field specifying the flash_offset */ -	if (imximage_flash_offset == FLASH_OFFSET_UNDEFINED) { +	if (imximage_ivt_offset == FLASH_OFFSET_UNDEFINED) {  		fprintf(stderr, "Error: No BOOT_FROM tag in %s\n", name);  		exit(EXIT_FAILURE);  	} @@ -498,14 +499,14 @@ static void imximage_set_header(void *ptr, struct stat *sbuf, int ifd,  	 */  	imximage_version = IMXIMAGE_V1;  	/* Be able to detect if the cfg file has no BOOT_FROM tag */ -	imximage_flash_offset = FLASH_OFFSET_UNDEFINED; +	imximage_ivt_offset = FLASH_OFFSET_UNDEFINED;  	set_hdr_func(imxhdr);  	/* Parse dcd configuration file */  	dcd_len = parse_cfg_file(imxhdr, params->imagename);  	/* Set the imx header */ -	(*set_imx_hdr)(imxhdr, dcd_len, params->ep, imximage_flash_offset); +	(*set_imx_hdr)(imxhdr, dcd_len, params->ep, imximage_ivt_offset);  	/*  	 * ROM bug alert @@ -516,7 +517,7 @@ static void imximage_set_header(void *ptr, struct stat *sbuf, int ifd,  	 *  	 * The remaining fraction of a block bytes would not be loaded!  	 */ -	*header_size_ptr = ROUND(sbuf->st_size + imximage_flash_offset, 4096); +	*header_size_ptr = ROUND(sbuf->st_size + imximage_ivt_offset, 4096);  }  int imximage_check_params(struct mkimage_params *params) |