blob: 60ae350cbacae2ba7ae762f810fc65b5b589460d [file] [log] [blame]
Leonardo Sandoval9dfdd1b2020-08-06 17:08:11 -05001#!/usr/bin/env bash
Fathi Boudra422bf772019-12-02 11:10:16 +02002#
Chris Kay4e8aaf12022-09-01 15:21:55 +01003# Copyright (c) 2019-2022, Arm Limited. All rights reserved.
Fathi Boudra422bf772019-12-02 11:10:16 +02004#
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 preload_bl33_bin="tftf.bin" \
18 preload_bl33="1" \
19 gen_model_params
Leonardo Sandoval1240a0a2020-10-27 11:27:11 -060020
Leonardo Sandoval00ced1f2020-12-07 12:55:08 -060021 model="$model" gen_fvp_yaml
Fathi Boudra422bf772019-12-02 11:10:16 +020022}