blob: a027f0dd48054fca8d2b2a783a7f46061e532b62 [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() {
johpow01efa3b652020-09-17 16:09:12 -05009 get_scp_bl2_bin
10 get_uboot_bin
Zelaleme9e81482020-07-10 15:18:46 -050011 build_fip BL33="$archive/uboot.bin" SCP_BL2="$archive/scp_bl2.bin"
12}
13
14post_fetch_tf_resource() {
15 # Override the default URL since it points to OE and we need Busybox
16 url="$linaro_release/juno-latest-busybox-uboot" gen_recovery_image "$archive/bl1.bin" "$archive/fip.bin"
17 # Linux manual shutdown test, 600 second timeout
18 juno_manual_test_run "linux-manual-shutdown" "600" "$archive/run.log"
19}