blob: e6191c3f864e5b61312a0d1afe3583efeead8b44 [file] [log] [blame]
Leonardo Sandoval9dfdd1b2020-08-06 17:08:11 -05001#!/usr/bin/env bash
Zelaleme9e81482020-07-10 15:18:46 -05002#
3# Copyright (c) 2020, Arm Limited. All rights reserved.
4#
5# SPDX-License-Identifier: BSD-3-Clause
6#
7
8post_tf_build() {
9 # Override the default URL since it points to OE and we need Busybox
10 url="$linaro_release/juno-latest-busybox-uboot/SOFTWARE/scp_bl2.bin" get_scp_bl2_bin
11 url="$linaro_release/juno-latest-busybox-uboot/SOFTWARE/bl33-uboot.bin" get_uboot_bin
12 build_fip BL33="$archive/uboot.bin" SCP_BL2="$archive/scp_bl2.bin"
13}
14
15post_fetch_tf_resource() {
16 # Override the default URL since it points to OE and we need Busybox
17 url="$linaro_release/juno-latest-busybox-uboot" gen_recovery_image "$archive/bl1.bin" "$archive/fip.bin"
18 # Linux manual shutdown test, 600 second timeout
19 juno_manual_test_run "linux-manual-shutdown" "600" "$archive/run.log"
20}