diff options
author | Tom Rini <trini@konsulko.com> | 2025-04-08 14:21:40 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-04-10 08:20:09 -0600 |
commit | fe8a33b81cacdd01379f3a72b8dcb0dc29aa9cf5 (patch) | |
tree | c9a9453dc69c8fa691326161e4bd97b64b8a3a56 | |
parent | d592ebd6b805b37a127151eb8de9261cf799d438 (diff) |
Dockerfile: Update to a more current TF-A release tag
In preparation for using TF-A more in our CI loops, switch to the
current release tag for TF-A.
Signed-off-by: Tom Rini <trini@konsulko.com>
-rw-r--r-- | tools/docker/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/docker/Dockerfile b/tools/docker/Dockerfile index 80bc2a9c131..e7be4e542b3 100644 --- a/tools/docker/Dockerfile +++ b/tools/docker/Dockerfile @@ -231,7 +231,7 @@ RUN git clone https://gitlab.com/qemu-project/qemu.git /tmp/qemu && \ # Build fiptool RUN git clone https://git.trustedfirmware.org/TF-A/trusted-firmware-a.git /tmp/tf-a && \ cd /tmp/tf-a/ && \ - git checkout v2.10.0 && \ + git checkout v2.12.0 && \ cd tools/fiptool && \ make -j$(nproc) && \ mkdir -p /usr/local/bin && \ |