Zelalem Aweke | 773e19b | 2021-08-20 17:41:00 -0500 | [diff] [blame] | 1 | #!/usr/bin/env bash |
2 | # | ||||
3 | # Copyright (c) 2021, Arm Limited. All rights reserved. | ||||
4 | # | ||||
5 | # SPDX-License-Identifier: BSD-3-Clause | ||||
6 | # | ||||
7 | |||||
8 | # Build TF-A with tf-a-tests, TRP and Hafnium | ||||
9 | post_tf_build() { | ||||
10 | # Stash the TRP binary | ||||
11 | archive_file "${tf_root}/build/fvp/${bin_mode}/rmm.bin" | ||||
12 | |||||
13 | build_fip BL33="$archive/tftf.bin" BL32="$archive/secure_hafnium.bin" \ | ||||
14 | RMM="$archive/rmm.bin" | ||||
15 | } |