aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAditya Angadi <aditya.angadi@arm.com>2020-02-26 17:40:25 +0530
committerThomas Abraham <thomas.abraham@arm.com>2020-03-29 18:21:50 +0530
commit43c2ac1ef50129d0cebeecb21b1cca9564af8e65 (patch)
tree4329682892c025deb1267000084d456659bc21ea
parent80c84b6398acfd13ce6d3a95e667b6b92eb9fab9 (diff)
build-target-bins.sh: adapt to changes in dtb file names
Commit 25ac87940 ("fconf: Add dynamic config DTBs info as property") in the Arm Trusted Firmware project changes the name of the *_tb_fw_config.dtb as *_fw_config.dtb. Correspondingly change the build-target-bins.sh file. Change-Id: I20d37702ae6ea29801680018190b3cd87d6ec336 Signed-off-by: Aditya Angadi <aditya.angadi@arm.com>
-rwxr-xr-xbuild-target-bins.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/build-target-bins.sh b/build-target-bins.sh
index 7f92e7e..4e31723 100755
--- a/build-target-bins.sh
+++ b/build-target-bins.sh
@@ -255,8 +255,8 @@ do_package()
#ToDo: This should be ideally be handled using additional flags for hardware
# config fdts from the platform config files.
if [ "$PLATFORM" != "fvp" ] && [ "$PLATFORM" != "fvp32" ]; then
- if [ -f "${OUTDIR}/${!tf_out}/${!tf_out}_tb_fw_config.dtb" ]; then
- tb_fw_config_fip_param="${tb_fw_config_param_id} ${OUTDIR}/${!tf_out}/${!tf_out}_tb_fw_config.dtb"
+ if [ -f "${OUTDIR}/${!tf_out}/${!tf_out}_fw_config.dtb" ]; then
+ tb_fw_config_fip_param="${tb_fw_config_param_id} ${OUTDIR}/${!tf_out}/${!tf_out}_fw_config.dtb"
fi
if [ -f "${OUTDIR}/${!tf_out}/${!tf_out}_nt_fw_config.dtb" ]; then
nt_fw_config_fip_param="${nt_fw_config_param_id} ${OUTDIR}/${!tf_out}/${!tf_out}_nt_fw_config.dtb"