blob: 05bf41a9f2c81aadaa1b15e0d877bb3d84679912 [file] [log] [blame]
Tomás González5c6cf1b2024-11-07 12:31:18 +00001#!/usr/bin/env bash
2#
Tomás González94bc5582025-06-25 14:45:03 +01003# Copyright (c) 2024-2025, Arm Limited. All rights reserved.
Tomás González5c6cf1b2024-11-07 12:31:18 +00004#
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
Sandrine Afsae2d6d2f2025-04-17 11:37:24 +020020 model="$model" arch_version="8.4" gen_model_params
Tomás González5c6cf1b2024-11-07 12:31:18 +000021
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}