blob: a810abf3d1911c205221ae089c2275f3aa2feaab [file] [log] [blame]
Leonardo Sandoval9dfdd1b2020-08-06 17:08:11 -05001#!/usr/bin/env bash
Zelaleme9e81482020-07-10 15:18:46 -05002#
Chris Kay4e8aaf12022-09-01 15:21:55 +01003# Copyright (c) 2019-2022, Arm Limited. All rights reserved.
Zelaleme9e81482020-07-10 15:18:46 -05004#
5# SPDX-License-Identifier: BSD-3-Clause
6#
7
8post_tf_build() {
9 # Build FIP without any BL33 image (it is preloaded)
10 build_fip
11}
12
Chris Kay4e8aaf12022-09-01 15:21:55 +010013generate_lava_job() {
14 local model="base-aemv8a"
Leonardo Sandoval00ced1f2020-12-07 12:55:08 -060015
Chris Kay4e8aaf12022-09-01 15:21:55 +010016 model="$model" \
17 bmcov_plugin_path="${coverage_trace_plugin}" \
18 bmcov_plugin="1" \
19 preload_bl33_bin="tftf.bin" \
20 preload_bl33="1" \
21 gen_model_params
Leonardo Sandoval1240a0a2020-10-27 11:27:11 -060022
Leonardo Sandoval00ced1f2020-12-07 12:55:08 -060023 model="$model" gen_fvp_yaml
Zelaleme9e81482020-07-10 15:18:46 -050024}