blob: 0a014b00f4c6253d5581d0b2508bfe0d8494ecb8 [file] [log] [blame]
Leonardo Sandoval9dfdd1b2020-08-06 17:08:11 -05001#!/usr/bin/env bash
Fathi Boudra422bf772019-12-02 11:10:16 +02002#
Harrison Mutai3dcd1fe2025-03-24 13:19:29 +00003# Copyright (c) 2019-2025 Arm Limited. All rights reserved.
Fathi Boudra422bf772019-12-02 11:10:16 +02004#
5# SPDX-License-Identifier: BSD-3-Clause
6#
7
8post_tf_build() {
Harrison Mutai6f4fd6c2023-03-27 13:22:41 +01009 url="$uboot_url" filename="uboot.bin" fetch_and_archive
Fathi Boudra422bf772019-12-02 11:10:16 +020010 build_fip BL33="$archive/uboot.bin"
Harrison Mutai3dcd1fe2025-03-24 13:19:29 +000011
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 Boudra422bf772019-12-02 11:10:16 +020015}