Sync run_config files with internal CI
Signed-off-by: Zelalem <zelalem.aweke@arm.com>
Change-Id: I0b8e637832f85ad9f36355632ece115c696a8274
diff --git a/run_config/juno-tftf+aarch32.reboot b/run_config/juno-tftf+aarch32.reboot
new file mode 100644
index 0000000..b1a01e7
--- /dev/null
+++ b/run_config/juno-tftf+aarch32.reboot
@@ -0,0 +1,21 @@
+#!/bin/bash
+#
+# Copyright (c) 2019, Arm Limited. All rights reserved.
+#
+# SPDX-License-Identifier: BSD-3-Clause
+#
+
+post_tf_build() {
+ get_psci_reset2_scp_bl2_bin
+
+ # Building FIP for this config requires a BL32 built in AArch32, but
+ # we'll only build that later. For now, provide a dummy file; we'll
+ # update the FIP with real BL32 image later.
+ local tmp_bl32="$(mktempfile)"
+ build_fip BL32="$tmp_bl32" BL33="$archive/tftf.bin" SCP_BL2="$archive/scp_bl2.bin"
+}
+
+post_fetch_tf_resource() {
+ gen_recovery_image32 "$archive/bl1.bin" "$archive/fip.bin"
+ payload_type="tftf" gen_juno_yaml
+}