From 1da4d0452d5407a8168cf76263999cb46de302e2 Mon Sep 17 00:00:00 2001
From: Mattijs Korpershoek <mkorpershoek@baylibre.com>
Date: Fri, 22 Nov 2024 11:47:36 +0100
Subject: [PATCH] bootloaders: Use upstream TF-A remote for atf

Historically, we have been using a ti mirror for the
Trusted-Firmware-A project.

This is because TI did not want a manifest for fetching the bootloaders.

With release 10.1 and onwards, we will be able to fetch the bootloaders via a
dedicated manifest.
Therefore, no reason to use the ti-mirror for this project.

Remove it and use the upstream mirror instead.

Use the same version as TI's yocto release [1]

[1] https://git.ti.com/cgit/arago-project/meta-ti/tree/meta-ti-bsp/recipes-bsp/trusted-firmware-a/trusted-firmware-a-ti.inc?h=scarthgap
Signed-off-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>
---
 bootloaders.xml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/bootloaders.xml b/bootloaders.xml
index 6df2097..1685695 100644
--- a/bootloaders.xml
+++ b/bootloaders.xml
@@ -3,10 +3,11 @@
     <remote name="baylibre" fetch="ssh://git@gitlab.baylibre.com/baylibre/ti" />
     <remote name="ti" fetch="git://git.ti.com/" />
     <remote name="github" fetch="https://github.com/" />
+    <remote name="tf-a" fetch="git://git.trustedfirmware.org/" />
 
     <project name="android/bootloader/build-bootloaders.git" path="build" remote="baylibre" revision="ti-android-15" />
     <project name="ti-u-boot" path="u-boot" remote="baylibre" revision="integ/ti-u-boot-2024.04" />
-    <project name="atf/arm-trusted-firmware.git" path="arm-trusted-firmware" remote="ti" revision="refs/tags/09.02.00.009" clone-depth="1" />
+    <project name="TF-A/trusted-firmware-a.git" path="arm-trusted-firmware" remote="tf-a" revision="58b25570c9ef91753b14c2103f45f4be9dddb696" clone-depth="1" />
     <project name="OP-TEE/optee_os.git" path="optee-os" remote="github" revision="refs/tags/4.2.0" />
     <project name="OP-TEE/optee_test.git" path="optee-ta/optee_test" remote="github" revision="refs/tags/4.2.0" />
     <project name="android/aosp/external/kmgk.git" path="optee-ta/kmgk" remote="baylibre" revision="ti-android-15"/>
-- 
GitLab