blob: 84f9b4704535118dd4f4197ba2f0fea5f975b95e [file] [log] [blame]
Leonardo Sandoval9dfdd1b2020-08-06 17:08:11 -05001#!/usr/bin/env bash
Zelaleme9e81482020-07-10 15:18:46 -05002#
Andre Przywara139d58d2021-12-03 13:39:11 +00003# Copyright (c) 2019-2022 Arm Limited. All rights reserved.
Zelaleme9e81482020-07-10 15:18:46 -05004#
5# SPDX-License-Identifier: BSD-3-Clause
6#
7
8post_tf_build() {
9 get_scp_bl2_bin
Andre Przywara139d58d2021-12-03 13:39:11 +000010 get_ml_uboot_bin
Zelaleme9e81482020-07-10 15:18:46 -050011 get_optee_bin
12 build_fip BL33="$archive/uboot.bin" BL32="$archive/bl32.bin" SCP_BL2="$archive/scp_bl2.bin"
13}
14
15post_fetch_tf_resource() {
Andre Przywara139d58d2021-12-03 13:39:11 +000016 get_linux_image
17 gen_recovery_image "$archive/bl1.bin" "$archive/fip.bin" "$archive/Image" "$archive/ramdisk.img" "$archive/blank.img"
Zelaleme9e81482020-07-10 15:18:46 -050018 payload_type="linux" gen_juno_yaml
19}