From bbedf279f87d3f8d7ab19ba737b6c4e6e3098391 Mon Sep 17 00:00:00 2001 From: Paul Noalhyt Date: Wed, 18 Dec 2024 18:00:42 +0100 Subject: [PATCH] Update patchmaker dockerstub to use mirror server for downloading the BCC toolchain --- ofrak_patch_maker/Dockerstub | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ofrak_patch_maker/Dockerstub b/ofrak_patch_maker/Dockerstub index fcb9d05a2..a157de7d9 100644 --- a/ofrak_patch_maker/Dockerstub +++ b/ofrak_patch_maker/Dockerstub @@ -129,7 +129,7 @@ fi; #BCC (GCC) SPARC v8 RUN if [ "$TARGETARCH" = "amd64" ]; then \ cd /tmp/ \ - && wget https://www.gaisler.com/anonftp/bcc2/bin/bcc-2.0.7-gcc-linux64.tar.xz --show-progress --progress=bar:force:noscroll \ + && wget http://mirror.tensorflow.org/www.gaisler.com/anonftp/bcc2/bin/bcc-2.0.7-gcc-linux64.tar.xz --show-progress --progress=bar:force:noscroll \ && mkdir -p /opt/rbs/toolchain/ \ && tar -C /opt/rbs/toolchain/ -xJf bcc-2.0.7-gcc-linux64.tar.xz \ && rm bcc-2.0.7-gcc-linux64.tar.xz; \