[PATCH] docker: Use GitHub-mirrored TF-A repository to avoid clone failures
Bin Meng
bmeng.cn at gmail.com
Mon Nov 10 14:37:58 CET 2025
GitHub Actions consistently fails to clone the upstream TF-A repo,
returning the error: "The requested URL returned error: 403".
To improve compatibility in building the docker image with GitHub
Actions, switch to the GitHub-mirrored TF-A repository instead.
Signed-off-by: Bin Meng <bmeng.cn at gmail.com>
---
tools/docker/Dockerfile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/docker/Dockerfile b/tools/docker/Dockerfile
index d2384219c06..201a1cdbac1 100644
--- a/tools/docker/Dockerfile
+++ b/tools/docker/Dockerfile
@@ -243,7 +243,7 @@ RUN git clone --depth=1 https://github.com/OP-TEE/optee_os.git /tmp/optee_os \
# Build fiptool, bl1 and fip for fvp and qemu_arm64
RUN git clone --depth=1 -b mbedtls-3.6 https://github.com/ARMmbed/mbedtls.git /tmp/mbedtls
-RUN git clone --depth=1 https://git.trustedfirmware.org/TF-A/trusted-firmware-a.git /tmp/tf-a \
+RUN git clone --depth=1 https://github.com/ARM-software/arm-trusted-firmware.git /tmp/tf-a \
-b v2.13.0 && \
cd /tmp/tf-a/ && \
make CROSS_COMPILE=/opt/gcc-${TCVER}-nolibc/aarch64-linux/bin/aarch64-linux- \
--
2.34.1
More information about the U-Boot
mailing list