Skip to content

Commit 273ed1c

Browse files

File tree

8 files changed

+25
-25
lines changed

8 files changed

+25
-25
lines changed

Dockerfile-builder.template

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@ RUN set -eux; \
8888
BR2_TOOLCHAIN_BUILDROOT_GLIBC \
8989
'; \
9090
\
91-
# buildroot arches: https://git.busybox.net/buildroot/tree/arch
92-
# buildroot+uclibc arches: https://git.busybox.net/buildroot/tree/package/uclibc/Config.in ("config BR2_PACKAGE_UCLIBC_ARCH_SUPPORTS")
91+
# buildroot arches: https://gitlab.com/buildroot.org/buildroot/-/tree/HEAD/arch
92+
# buildroot+uclibc arches: https://gitlab.com/buildroot.org/buildroot/-/blob/HEAD/package/uclibc/Config.in ("config BR2_PACKAGE_UCLIBC_ARCH_SUPPORTS")
9393
dpkgArch="$(dpkg --print-architecture)"; \
9494
case "$dpkgArch" in \
9595
# explicitly target amd64 v1
@@ -112,7 +112,7 @@ RUN set -eux; \
112112
\
113113
# https://wiki.debian.org/ArmEabiPort#Choice_of_minimum_CPU
114114
# https://github.com/free-electrons/toolchains-builder/blob/db259641eaf5bbcf13f4a3c5003e5436e806770c/configs/arch/armv5-eabi.config
115-
# https://git.busybox.net/buildroot/tree/arch/Config.in.arm
115+
# https://gitlab.com/buildroot.org/buildroot/-/blob/HEAD/arch/Config.in.arm
116116
# (Debian minimums at ARMv4, we minimum at ARMv5 instead)
117117
armel) \
118118
setConfs="$setConfs \
@@ -127,7 +127,7 @@ RUN set -eux; \
127127
# "Currently the Debian armhf port requires at least an ARMv7 CPU with Thumb-2 and VFP3D16."
128128
# https://wiki.debian.org/ArmHardFloatPort#Supported_devices
129129
# https://github.com/free-electrons/toolchains-builder/blob/db259641eaf5bbcf13f4a3c5003e5436e806770c/configs/arch/armv7-eabihf.config
130-
# https://git.busybox.net/buildroot/tree/arch/Config.in.arm
130+
# https://gitlab.com/buildroot.org/buildroot/-/blob/HEAD/arch/Config.in.arm
131131
armhf) \
132132
setConfs="$setConfs \
133133
BR2_arm=y \
@@ -415,7 +415,7 @@ RUN set -eux; \
415415
; do \
416416
dir="$(dirname "$file")"; \
417417
mkdir -p "../buildroot/$dir"; \
418-
curl -fL -o "../buildroot/$file" "https://git.busybox.net/buildroot/plain/$file?id=$buildrootVersion"; \
418+
curl -fL -o "../buildroot/$file" "https://gitlab.com/buildroot.org/buildroot/-/raw/$buildrootVersion/$file"; \
419419
[ -s "../buildroot/$file" ]; \
420420
done; \
421421
\
@@ -431,7 +431,7 @@ RUN set -eux; \
431431
grep -E '^root::' rootfs/etc/shadow; \
432432
sed -ri -e 's/^root::/root:*:/' rootfs/etc/shadow; \
433433
grep -E '^root:[*]:' rootfs/etc/shadow; \
434-
# set expected permissions, etc too (https://git.busybox.net/buildroot/tree/system/device_table.txt)
434+
# set expected permissions, etc too (https://gitlab.com/buildroot.org/buildroot/-/blob/HEAD/system/device_table.txt)
435435
awk ' \
436436
!/^#/ { \
437437
if ($2 != "d" && $2 != "f") { \

latest-1/glibc/Dockerfile.builder

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

latest-1/musl/Dockerfile.builder

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

latest-1/uclibc/Dockerfile.builder

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

latest/glibc/Dockerfile.builder

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

latest/musl/Dockerfile.builder

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

latest/uclibc/Dockerfile.builder

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

versions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ busyboxVersions="$(
4141
# ]
4242

4343
buildrootVersion="$(
44-
git ls-remote --tags https://git.busybox.net/buildroot \
44+
git ls-remote --tags https://gitlab.com/buildroot.org/buildroot.git \
4545
| cut -d/ -f3 \
4646
| cut -d^ -f1 \
4747
| grep -E '^[0-9]+' \

0 commit comments

Comments
 (0)