]> git.sur5r.net Git - u-boot/commitdiff
imximage: Remove failure when no IVT offset is found
authorFabio Estevam <fabio.estevam@nxp.com>
Fri, 9 Mar 2018 11:25:00 +0000 (08:25 -0300)
committerStefano Babic <sbabic@denx.de>
Fri, 9 Mar 2018 12:04:02 +0000 (13:04 +0100)
Sometimes imximage throws the following error:

  CFGS    board/freescale/vf610twr/imximage.cfg.cfgtmp
  CFGS    board/freescale/vf610twr/imximage.cfg.cfgtmp
  MKIMAGE u-boot-dtb.imx
Error: No BOOT_FROM tag in board/freescale/vf610twr/imximage.cfg.cfgtmp
arch/arm/mach-imx/Makefile:100: recipe for target 'u-boot-dtb.imx' failed

Later on, when running mkimage for the u-boot.imx it will succeed in
finding the IVT offset.

Looks like some race condition happening during parallel build when
processing mkimage for u-boot-dtb.imx and u-boot.imx.

A proper fix still needs to be implemented, but as a workaround let's
remove the error when the IVT offset is not found.

It is useful to have such message, especially during bring-up phase,
but the build error that it causes is severe, so better avoid the
build error for now.

The error checking can be re-implemented later when we have a proper
fix.

Reported-by: Breno Lima <breno.lima@nxp.com>
Reported-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
tools/imximage.c

index eb7e682038d0c7f83e7c2e1f74cd31ccb6c6cc42..ed9d93590316614bc8880ea94b51385b2f66b8ba 100644 (file)
@@ -777,11 +777,6 @@ static uint32_t parse_cfg_file(struct imx_header *imxhdr, char *name)
        (*set_dcd_rst)(imxhdr, dcd_len, name, lineno);
        fclose(fd);
 
-       /* Exit if there is no BOOT_FROM field specifying the flash_offset */
-       if (imximage_ivt_offset == FLASH_OFFSET_UNDEFINED) {
-               fprintf(stderr, "Error: No BOOT_FROM tag in %s\n", name);
-               exit(EXIT_FAILURE);
-       }
        return dcd_len;
 }