fix(fvp-spm.edk2): fix URLs used to download SPM binaries
With patch [1], run configurations are now responsible for fetching SPM
binaries. The 'fvp-spm.edk2' run config attempted to do that but using
an incorrect URL. Fix that.
[1] https://review.trustedfirmware.org/c/ci/tf-a-job-configs/+/12443
Signed-off-by: Sandrine Bailleux <sandrine.bailleux@arm.com>
Change-Id: I2a4a3d2e300318ea4d776491c87733daeeea2b00
diff --git a/run_config/fvp-spm.edk2 b/run_config/fvp-spm.edk2
index 51b990a..8b3108a 100644
--- a/run_config/fvp-spm.edk2
+++ b/run_config/fvp-spm.edk2
@@ -1,14 +1,14 @@
#!/usr/bin/env bash
#
-# Copyright (c) 2019-2020 Arm Limited. All rights reserved.
+# Copyright (c) 2019-2021 Arm Limited. All rights reserved.
#
# SPDX-License-Identifier: BSD-3-Clause
#
post_tf_build() {
# Fetch EDK2 and pre-built partition files
- url="$project_filer/ci-files/spm/FVP_AARCH64_EFI.fd" fetch_file
- url="$project_filer/ci-files/spm/STANDALONESMM.fd" fetch_file
+ url="$tfa_downloads/spm/FVP_AARCH64_EFI.fd" fetch_file
+ url="$tfa_downloads/spm/STANDALONESMM.fd" fetch_file
archive_file "FVP_AARCH64_EFI.fd"
archive_file "STANDALONESMM.fd"