blob: 4a32b61f0b00460643a1c74dfe1574bb51edf4f7 [file] [log] [blame]
Leonardo Sandoval9dfdd1b2020-08-06 17:08:11 -05001#!/usr/bin/env bash
Fathi Boudra422bf772019-12-02 11:10:16 +02002#
Harrison Mutaia6d6e682023-03-27 13:20:33 +01003# Copyright (c) 2019-2023, Arm Limited. All rights reserved.
Fathi Boudra422bf772019-12-02 11:10:16 +02004#
5# SPDX-License-Identifier: BSD-3-Clause
6#
7
8fetch_tf_resource() {
Harrison Mutai6f4fd6c2023-03-27 13:22:41 +01009 image="kernel" type="fvp-oe-uboot" get_boot_image
10 image="initrd" type="dummy-ramdisk" get_boot_image
Fathi Boudra422bf772019-12-02 11:10:16 +020011 get_rootfs
Chris Kay4e8aaf12022-09-01 15:21:55 +010012}
13
14generate_lava_job_template() {
Paul Sokolovsky3fef24e2023-01-31 14:50:59 +070015 uart="0" timeout="1800" lava_timeout="1500" file="linux-oe.exp" track_expect
Leonardo Sandoval42e60502020-10-21 17:16:41 -050016
Harrison Mutaia6d6e682023-03-27 13:20:33 +010017 payload_type="linux" gen_yaml_template
Fathi Boudra422bf772019-12-02 11:10:16 +020018}