Zelalem | e9e8148 | 2020-07-10 15:18:46 -0500 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | # |
| 3 | # Copyright (c) 2020, Arm Limited. All rights reserved. |
| 4 | # |
| 5 | # SPDX-License-Identifier: BSD-3-Clause |
| 6 | # |
| 7 | |
| 8 | post_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 | |
| 15 | post_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 | } |