blob: f0a9e64401864cf841e3df96a42676088d94c9db [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
8generate_lava_job() {
9 local model="base-aemva"
10
11 model="$model" \
12 aarch32="1" \
13 etm_plugin="1" \
14 etm_present="1" \
15 supports_trace_filter_regs="2" \
16 bmcov_plugin="1" \
17 bmcov_plugin_path="${coverage_trace_plugin}" \
18 gen_model_params
19
20 model="$model" gen_fvp_yaml
21}