Madhukar Pappireddy | 9062ebf | 2021-03-02 17:07:06 -0600 | [diff] [blame^] | 1 | #!/usr/bin/env bash |
2 | # | ||||
3 | # Copyright (c) 2021 Arm Limited. All rights reserved. | ||||
4 | # | ||||
5 | # SPDX-License-Identifier: BSD-3-Clause | ||||
6 | # | ||||
7 | post_tf_build() { | ||||
8 | # Build FIP without any BL33 image (it is preloaded) | ||||
9 | build_fip | ||||
10 | } | ||||
11 | |||||
12 | post_fetch_tf_resource() { | ||||
13 | local model="base-aemv8a" | ||||
14 | |||||
15 | kernel_addr="0x80080000" dtb_addr="0x80070000" \ | ||||
16 | model="$model" gen_model_params | ||||
17 | |||||
18 | model="$model" gen_fvp_yaml | ||||
19 | } |