#!/usr/bin/env bash | |
# | |
# Copyright (c) 2019-2023, Arm Limited. All rights reserved. | |
# | |
# SPDX-License-Identifier: BSD-3-Clause | |
# | |
fetch_tf_resource() { | |
image="kernel" type="fvp-aarch32-zimage" get_boot_image | |
image="initrd" type="aarch32-ramdisk" get_boot_image | |
} | |
generate_lava_job_template() { | |
uart="0" set_expect_variable "skip_early_boot_msgs" "1" | |
uart="0" file="linux-rd-busybox-aarch32.exp" track_expect | |
payload_type="linux" gen_yaml_template | |
} |