blob: 5e02c915d4c16f36963b5a4820fb3fcb69627d90 [file] [log] [blame]
Leonardo Sandoval9dfdd1b2020-08-06 17:08:11 -05001#!/usr/bin/env bash
Zelaleme9e81482020-07-10 15:18:46 -05002#
3# Copyright (c) 2020, Arm Limited. All rights reserved.
4#
5# SPDX-License-Identifier: BSD-3-Clause
6#
7
8pre_tf_build() {
9 # Apply a patch which disables dynamic authentication
10 # of images during trusted board boot.
11 apply_tf_patch "tbb_dyn_auth/disable_dyn_auth.patch"
12}
13
14post_tf_archive() {
15 model="base-aemv8a" gen_model_params
Leonardo Sandoval1240a0a2020-10-27 11:27:11 -060016
17 model="base-aemv8a" \
18 model_bin="FVP_Base_AEMv8A-AEMv8A" \
19 gen_fvp_yaml
Zelaleme9e81482020-07-10 15:18:46 -050020}
21
22fetch_tf_resource() {
23 uart="0" timeout="60" file="disable_dyn_auth.exp" track_expect
24}