From: Tom Rini Date: Tue, 19 Nov 2019 01:02:09 +0000 (-0500) Subject: T1042RDB_PI_NAND_SECURE_BOOT: Guard t104xrdb SPL env code X-Git-Tag: v2020.10~488^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8160c38ca1fde4386db5a4ee07e86e397a4914df;p=platform%2Fkernel%2Fu-boot.git T1042RDB_PI_NAND_SECURE_BOOT: Guard t104xrdb SPL env code We can only configure and set the environment in SPL when we have a particular environment location set that is not "nowhere" like it is in SECURE_BOOT designs. Update the code to reflect that. Cc: Priyanka Jain Signed-off-by: Tom Rini Reviewed-by: Priyanka Jain --- diff --git a/board/freescale/t104xrdb/spl.c b/board/freescale/t104xrdb/spl.c index 7b0eb8e..7df371d 100644 --- a/board/freescale/t104xrdb/spl.c +++ b/board/freescale/t104xrdb/spl.c @@ -106,6 +106,8 @@ void board_init_r(gd_t *gd, ulong dest_addr) #endif /* relocate environment function pointers etc. */ +#if defined(CONFIG_ENV_IS_IN_NAND) || defined(CONFIG_ENV_IS_IN_MMC) || \ + defined(CONFIG_ENV_IS_IN_SPI_FLASH) #ifdef CONFIG_SPL_NAND_BOOT nand_spl_load_image(CONFIG_ENV_OFFSET, CONFIG_ENV_SIZE, (uchar *)CONFIG_ENV_ADDR); @@ -120,6 +122,7 @@ void board_init_r(gd_t *gd, ulong dest_addr) #endif gd->env_addr = (ulong)(CONFIG_ENV_ADDR); gd->env_valid = ENV_VALID; +#endif i2c_init_all();