blob: 11e869e663b5123013ea8622d9e182a7a17d15ae [file] [log] [blame]
mardyk01b5002ac2023-07-21 17:11:14 -05001#!/usr/bin/env bash
2#
3# Copyright (c) 2023, 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
14generate_lava_job() {
15 local model="base-aemv8a"
16
17 uart="0" file="disable_dyn_auth_tftf.exp" track_expect
18
19 model="$model" bmcov_plugin="1" \
20 bmcov_plugin_path="${coverage_trace_plugin}" \
21 gen_model_params
22 model="$model" gen_fvp_yaml
23}