aboutsummaryrefslogtreecommitdiff
path: root/include/configs/ti_armv7_common.h
diff options
context:
space:
mode:
authorSuman Anna <s-anna@ti.com>2020-04-24 13:39:52 -0500
committerLokesh Vutla <lokeshvutla@ti.com>2020-05-09 19:57:59 +0530
commit552f19f8fe069500c024bbe44e25e1ed9535d27c (patch)
tree2c9eff998816a3d05581ea15dd32bc4ddcd705a2 /include/configs/ti_armv7_common.h
parentc5c657644bc35fd6b3d6e5517698721e90646b8d (diff)
downloadu-boot-552f19f8fe069500c024bbe44e25e1ed9535d27c.zip
u-boot-552f19f8fe069500c024bbe44e25e1ed9535d27c.tar.gz
u-boot-552f19f8fe069500c024bbe44e25e1ed9535d27c.tar.bz2
configs: ti: Fix usage of undefined variable overlay_files
The env variable overlay_files is used while adding the environment support commands for FIT loading, but it was cleaned up just prior in commit ee53b59511a6 ("configs: Remove unneeded overlay_files environment variable"). Fix this by replacing the undefined variable with the proper name_overlays env variable. Fixes: 76470b6929d5 ("configs: ti: Add environment support commands for FIT loading") Signed-off-by: Suman Anna <s-anna@ti.com>
Diffstat (limited to 'include/configs/ti_armv7_common.h')
-rw-r--r--include/configs/ti_armv7_common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/ti_armv7_common.h b/include/configs/ti_armv7_common.h
index a612bb5..0882978 100644
--- a/include/configs/ti_armv7_common.h
+++ b/include/configs/ti_armv7_common.h
@@ -63,7 +63,7 @@
"name_fit=fitImage\0" \
"update_to_fit=setenv loadaddr ${addr_fit}; setenv bootfile ${name_fit}\0" \
"get_overlaystring=" \
- "for overlay in $overlay_files;" \
+ "for overlay in $name_overlays;" \
"do;" \
"setenv overlaystring ${overlaystring}'#'${overlay};" \
"done;\0" \