Skip to content

Commit 8af6145

Browse files
authored
Use mirror for BCC toolchain (#541)
* Update patchmaker dockerstub to use mirror server for downloading the BCC toolchain * Update CHANGELOG.md * Update CHANGELOG.md
1 parent 935ba58 commit 8af6145

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ofrak_patch_maker/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
1818
### Changed
1919
- Removed `SUBALIGN(0)` for `.bss` sections
2020
- Minor update to OFRAK Community License, add OFRAK Pro License ([#478](https://github.com/redballoonsecurity/ofrak/pull/478))
21-
- Install toolchains from source or tarball instead of relying on the Debian package manager ([#502](https://github.com/redballoonsecurity/ofrak/pull/502))
21+
- Install toolchains from source or tarball instead of relying on the Debian package manager ([#502](https://github.com/redballoonsecurity/ofrak/pull/502), [#541](https://github.com/redballoonsecurity/ofrak/pull/541))
2222

2323
## [4.0.2](https://github.com/redballoonsecurity/ofrak/compare/ofrak-patch-maker-v.4.0.1...ofrak-patch-maker-v.4.0.2)
2424
### Fixed

ofrak_patch_maker/Dockerstub

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ fi;
129129
#BCC (GCC) SPARC v8
130130
RUN if [ "$TARGETARCH" = "amd64" ]; then \
131131
cd /tmp/ \
132-
&& wget https://www.gaisler.com/anonftp/bcc2/bin/bcc-2.0.7-gcc-linux64.tar.xz --show-progress --progress=bar:force:noscroll \
132+
&& 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 \
133133
&& mkdir -p /opt/rbs/toolchain/ \
134134
&& tar -C /opt/rbs/toolchain/ -xJf bcc-2.0.7-gcc-linux64.tar.xz \
135135
&& rm bcc-2.0.7-gcc-linux64.tar.xz; \

0 commit comments

Comments
 (0)