#!/usr/bin/env bash | |
# | |
# Copyright (c) 2020-2022, Arm Limited. All rights reserved. | |
# | |
# SPDX-License-Identifier: BSD-3-Clause | |
# | |
pre_tf_build() { | |
# Apply a patch which disables dynamic authentication | |
# of images during trusted board boot. | |
apply_tf_patch "tbb_dyn_auth/disable_dyn_auth.patch" | |
} | |
generate_lava_job() { | |
local model="base-aemv8a" | |
uart="0" file="disable_dyn_auth_tftf.exp" track_expect | |
model="$model" gen_model_params | |
model="$model" gen_fvp_yaml | |
} |