summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorDaniel Boulby <daniel.boulby@arm.com>2022-08-01 10:57:37 +0100
committerDaniel Boulby <daniel.boulby@arm.com>2022-08-01 11:09:08 +0100
commit427be2a931146cc90b23274e5a9b4d8d6646199d (patch)
tree9954cb9f550307c49d73ce38172d777bcc60013a /tools
parent04b5fd64fba79192ce35b43d9620e5d4c325c1a5 (diff)
fix(build): use common name for ivy partitions
Trusted firmware sp_gen.mk expects the package name to be ivy.pkg for all ivy packages (both with and without the shim). However the packages are named according to the partition name in sp_layout.json. Make ivy partitions use the ivy name in sp_layout.json to prevent this name mismatch. Signed-off-by: Daniel Boulby <daniel.boulby@arm.com> Change-Id: If4702667b13be26feee809d10b21c46110ff6848
Diffstat (limited to 'tools')
-rwxr-xr-xtools/generate_json/generate_json.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/generate_json/generate_json.sh b/tools/generate_json/generate_json.sh
index 81ab756..9ac13ec 100755
--- a/tools/generate_json/generate_json.sh
+++ b/tools/generate_json/generate_json.sh
@@ -83,7 +83,7 @@ elif [ $IVY_SHIM_PRESENT == "true" ]; then
if [ $PARTITION_ALREADY_PRESENT == "true" ]; then
echo -ne ",\n\n" >> $GENERATED_JSON
fi
- echo -ne "\t\"ivy_shim\" : {\n \
+ echo -ne "\t\"ivy\" : {\n \
\t\"image\": \"ivy.bin\",\n \
\t\"pm\": \"ivy-sel1.dts\",\n \
\t\"owner\": \"Plat\"\n\t}" >> "$GENERATED_JSON"