blob: f48676ec76a72b408bd8b705f845196e2bb35aa2 [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() {
Leonardo Sandoval00ced1f2020-12-07 12:55:08 -060015 local model="base-aemv8a"
Leonardo Sandoval1240a0a2020-10-27 11:27:11 -060016
Leonardo Sandoval00ced1f2020-12-07 12:55:08 -060017 model="$model" gen_model_params
18 model="$model" gen_fvp_yaml
Zelaleme9e81482020-07-10 15:18:46 -050019}
20
21fetch_tf_resource() {
Madhukar Pappireddyb437d242020-12-23 15:27:29 -060022 uart="0" file="disable_dyn_auth_tftf.exp" track_expect
Zelaleme9e81482020-07-10 15:18:46 -050023}