blob: 3b67f7b8d37ce7d715d9fb724d6d77e6865b207c [file] [log] [blame]
Tomás González5c6cf1b2024-11-07 12:31:18 +00001#!/usr/bin/env bash
2#
3# Copyright (c) 2024, Arm Limited. All rights reserved.
4#
5# SPDX-License-Identifier: BSD-3-Clause
6#
7
Tomás Gonzáleze72d5382024-11-13 14:08:25 +00008generate_lava_job_template() {
9 payload_type="linux" gen_yaml_template
10}
Tomás González5c6cf1b2024-11-07 12:31:18 +000011generate_lava_job() {
12 local model="base-aemv8a"
13
14 uart="0" file="tfa-next.exp" track_expect
15 # Track the rest of the UARTs to aid in debugging.
16 uart="1" file="hold_uart.exp" track_expect
17 uart="2" file="hold_uart.exp" track_expect
18 uart="3" file="hold_uart.exp" track_expect
19
20 model="$model" gen_model_params
21
Tomás González1eb7de02025-01-17 16:32:20 +000022 model="$model" next_bin="1" gen_fvp_yaml
Tomás González5c6cf1b2024-11-07 12:31:18 +000023}