Get crosstool-ng from GitHub release

This commit is contained in:
fi 2025-07-25 03:19:43 +02:00
parent cc2ca85a91
commit 9e6b9c8726

View file

@ -12,7 +12,7 @@ RUN apt-get update && \
patch libstdc++6 rsync git meson ninja-build patch libstdc++6 rsync git meson ninja-build
WORKDIR /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 && \ tar -xvf crosstool-ng-1.26.0.tar.xz && \
rm crosstool-ng-1.26.0.tar.xz && \ rm crosstool-ng-1.26.0.tar.xz && \
cd crosstool-ng-1.26.0 && \ cd crosstool-ng-1.26.0 && \
@ -24,11 +24,13 @@ RUN wget http://crosstool-ng.org/download/crosstool-ng/crosstool-ng-1.26.0.tar.x
ADD ct-ng.config .config ADD ct-ng.config .config
RUN /usr/local/ct/bin/ct-ng build RUN /usr/local/ct/bin/ct-ng build
RUN cd /build/ && \ RUN cd /build/ && \
git clone https://github.com/fail0verflow/hbc.git /build/hbc && \ git clone https://github.com/fail0verflow/hbc.git /build/hbc && \
cd /build/hbc/channel/wiiload && \ cd /build/hbc/channel/wiiload && \
git checkout 13305cfbe5db47eebc5e62aeed14f7adfbb83a5a && \ git checkout 13305cfbe5db47eebc5e62aeed14f7adfbb83a5a && \
make make
RUN git clone https://github.com/fail0verflow/bootmii-utils.git /build/bootmii-utils && \ RUN git clone https://github.com/fail0verflow/bootmii-utils.git /build/bootmii-utils && \
cd /build/bootmii-utils/client && \ cd /build/bootmii-utils/client && \
git checkout a32b8f6520d136677213fcbb730035a7e89567e2 && \ git checkout a32b8f6520d136677213fcbb730035a7e89567e2 && \