From 9e6b9c87264e841ea0fac10a7d244f138c554964 Mon Sep 17 00:00:00 2001 From: fi Date: Fri, 25 Jul 2025 03:19:43 +0200 Subject: [PATCH] Get crosstool-ng from GitHub release --- Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 53918aa..feaa68f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ RUN apt-get update && \ patch libstdc++6 rsync git meson ninja-build WORKDIR /build -RUN wget http://crosstool-ng.org/download/crosstool-ng/crosstool-ng-1.26.0.tar.xz && \ +RUN wget https://github.com/crosstool-ng/crosstool-ng/releases/download/crosstool-ng-1.26.0/crosstool-ng-1.26.0.tar.xz && \ tar -xvf crosstool-ng-1.26.0.tar.xz && \ rm crosstool-ng-1.26.0.tar.xz && \ cd crosstool-ng-1.26.0 && \ @@ -21,14 +21,16 @@ RUN wget http://crosstool-ng.org/download/crosstool-ng/crosstool-ng-1.26.0.tar.x make install && \ cd .. && \ rm -rf crosstool-ng-1.26.0 - + ADD ct-ng.config .config RUN /usr/local/ct/bin/ct-ng build + RUN cd /build/ && \ git clone https://github.com/fail0verflow/hbc.git /build/hbc && \ cd /build/hbc/channel/wiiload && \ git checkout 13305cfbe5db47eebc5e62aeed14f7adfbb83a5a && \ make + RUN git clone https://github.com/fail0verflow/bootmii-utils.git /build/bootmii-utils && \ cd /build/bootmii-utils/client && \ git checkout a32b8f6520d136677213fcbb730035a7e89567e2 && \