feat(rd1ae): add BL32 image when building the platform
Add the BL32 (OP-TEE) image to the FIP when building the RD-1 AE
platform.
Change-Id: Id5f4acbdeb0bb00748d0345170895900ffd6f40f
Signed-off-by: Ziad Elhanafy <ziad.elhanafy@arm.com>
diff --git a/run_config/fvp-linux.rd1ae b/run_config/fvp-linux.rd1ae
index c0665a0..770e2db 100644
--- a/run_config/fvp-linux.rd1ae
+++ b/run_config/fvp-linux.rd1ae
@@ -8,11 +8,15 @@
source "$ci_root/arm_auto_solutions_utils.sh"
post_tf_build() {
- # Download and archive rd1ae u-boot.bin files
+ # Download and archive rd1ae u-boot.bin file
url="$arm_automotive_solutions/rd1ae/u-boot.bin" saveas="uboot.bin" fetch_file
archive_file "uboot.bin"
- build_fip BL33="$archive/uboot.bin"
+ # Download and archive rd1ae tee-pager_v2.bin file
+ url="$arm_automotive_solutions/rd1ae/tee-pager_v2.bin" saveas="tee-pager_v2.bin" fetch_file
+ archive_file "tee-pager_v2.bin"
+
+ build_fip BL33="$archive/uboot.bin" BL32="$archive/tee-pager_v2.bin"
}
fetch_tf_resource() {