Leonardo Sandoval | 9dfdd1b | 2020-08-06 17:08:11 -0500 | [diff] [blame] | 1 | #!/usr/bin/env bash |
Fathi Boudra | 422bf77 | 2019-12-02 11:10:16 +0200 | [diff] [blame] | 2 | # |
Harrison Mutai | 3dcd1fe | 2025-03-24 13:19:29 +0000 | [diff] [blame] | 3 | # Copyright (c) 2019-2025 Arm Limited. All rights reserved. |
Fathi Boudra | 422bf77 | 2019-12-02 11:10:16 +0200 | [diff] [blame] | 4 | # |
| 5 | # SPDX-License-Identifier: BSD-3-Clause |
| 6 | # |
| 7 | |
| 8 | post_tf_build() { |
Harrison Mutai | 6f4fd6c | 2023-03-27 13:22:41 +0100 | [diff] [blame] | 9 | url="$uboot_url" filename="uboot.bin" fetch_and_archive |
Fathi Boudra | 422bf77 | 2019-12-02 11:10:16 +0200 | [diff] [blame] | 10 | build_fip BL33="$archive/uboot.bin" |
Harrison Mutai | 3dcd1fe | 2025-03-24 13:19:29 +0000 | [diff] [blame] | 11 | |
| 12 | # Fetch a simple boot script for testing in CI where semi-hosting might not |
| 13 | # be possible. |
| 14 | url="$uboot_script_url" filename="boot_script.bin" fetch_and_archive |
Fathi Boudra | 422bf77 | 2019-12-02 11:10:16 +0200 | [diff] [blame] | 15 | } |