mirror of
https://github.com/bensuperpc/dockcross.git
synced 2024-12-22 00:14:26 +01:00
Correct the qemu download URLs
It seems that wiki.qemu-project.org is not available anymore and downloads are now on download.qemu.org.
This commit is contained in:
parent
f7b6d06a53
commit
f11237cd73
@ -15,7 +15,7 @@ ENV CROSS_TRIPLE m68k-unknown-uclinux-uclibc
|
|||||||
WORKDIR /usr/src
|
WORKDIR /usr/src
|
||||||
|
|
||||||
RUN apt-get install -y libglib2.0-dev zlib1g-dev libpixman-1-dev && \
|
RUN apt-get install -y libglib2.0-dev zlib1g-dev libpixman-1-dev && \
|
||||||
curl -L http://wiki.qemu-project.org/download/qemu-${QEMU_VERSION}.tar.bz2 | tar xj && \
|
curl -L https://download.qemu.org/qemu-${QEMU_VERSION}.tar.bz2 | tar xj && \
|
||||||
cd qemu-${QEMU_VERSION} && \
|
cd qemu-${QEMU_VERSION} && \
|
||||||
./configure --target-list=m68k-softmmu --prefix=/usr && \
|
./configure --target-list=m68k-softmmu --prefix=/usr && \
|
||||||
make -j$(nproc) && \
|
make -j$(nproc) && \
|
||||||
|
@ -15,7 +15,7 @@ ENV CROSS_TRIPLE powerpc64le-unknown-linux-gnu
|
|||||||
WORKDIR /usr/src
|
WORKDIR /usr/src
|
||||||
|
|
||||||
RUN apt-get install -y libglib2.0-dev zlib1g-dev libpixman-1-dev && \
|
RUN apt-get install -y libglib2.0-dev zlib1g-dev libpixman-1-dev && \
|
||||||
curl -L http://wiki.qemu-project.org/download/qemu-${QEMU_VERSION}.tar.bz2 | tar xj && \
|
curl -L https://download.qemu.org/qemu-${QEMU_VERSION}.tar.bz2 | tar xj && \
|
||||||
cd qemu-${QEMU_VERSION} && \
|
cd qemu-${QEMU_VERSION} && \
|
||||||
./configure --target-list=ppc64le-linux-user --prefix=/usr && \
|
./configure --target-list=ppc64le-linux-user --prefix=/usr && \
|
||||||
make -j$(nproc) && \
|
make -j$(nproc) && \
|
||||||
|
@ -15,7 +15,7 @@ ENV CROSS_TRIPLE powerpc64le-unknown-linux-gnu
|
|||||||
WORKDIR /usr/src
|
WORKDIR /usr/src
|
||||||
|
|
||||||
RUN apt-get install -y libglib2.0-dev zlib1g-dev libpixman-1-dev && \
|
RUN apt-get install -y libglib2.0-dev zlib1g-dev libpixman-1-dev && \
|
||||||
curl -L http://wiki.qemu-project.org/download/qemu-${QEMU_VERSION}.tar.bz2 | tar xj && \
|
curl -L https://download.qemu.org/qemu-${QEMU_VERSION}.tar.bz2 | tar xj && \
|
||||||
cd qemu-${QEMU_VERSION} && \
|
cd qemu-${QEMU_VERSION} && \
|
||||||
./configure --target-list=ppc64le-linux-user --prefix=/usr && \
|
./configure --target-list=ppc64le-linux-user --prefix=/usr && \
|
||||||
make -j$(nproc) && \
|
make -j$(nproc) && \
|
||||||
|
@ -15,7 +15,7 @@ ENV CROSS_TRIPLE riscv32-unknown-linux-gnu
|
|||||||
WORKDIR /usr/src
|
WORKDIR /usr/src
|
||||||
|
|
||||||
RUN apt-get install -y libglib2.0-dev zlib1g-dev libpixman-1-dev && \
|
RUN apt-get install -y libglib2.0-dev zlib1g-dev libpixman-1-dev && \
|
||||||
curl -L http://wiki.qemu-project.org/download/qemu-${QEMU_VERSION}.tar.bz2 | tar xj && \
|
curl -L https://download.qemu.org/qemu-${QEMU_VERSION}.tar.bz2 | tar xj && \
|
||||||
cd qemu-${QEMU_VERSION} && \
|
cd qemu-${QEMU_VERSION} && \
|
||||||
./configure --target-list=riscv32-linux-user --prefix=/usr && \
|
./configure --target-list=riscv32-linux-user --prefix=/usr && \
|
||||||
make -j$(nproc) && \
|
make -j$(nproc) && \
|
||||||
|
@ -15,7 +15,7 @@ ENV CROSS_TRIPLE riscv64-unknown-linux-gnu
|
|||||||
WORKDIR /usr/src
|
WORKDIR /usr/src
|
||||||
|
|
||||||
RUN apt-get install -y libglib2.0-dev zlib1g-dev libpixman-1-dev && \
|
RUN apt-get install -y libglib2.0-dev zlib1g-dev libpixman-1-dev && \
|
||||||
curl -L http://wiki.qemu-project.org/download/qemu-${QEMU_VERSION}.tar.bz2 | tar xj && \
|
curl -L https://download.qemu.org/qemu-${QEMU_VERSION}.tar.bz2 | tar xj && \
|
||||||
cd qemu-${QEMU_VERSION} && \
|
cd qemu-${QEMU_VERSION} && \
|
||||||
./configure --target-list=riscv64-linux-user --prefix=/usr && \
|
./configure --target-list=riscv64-linux-user --prefix=/usr && \
|
||||||
make -j$(nproc) && \
|
make -j$(nproc) && \
|
||||||
|
@ -15,7 +15,7 @@ ENV CROSS_TRIPLE xtensa-fsf-linux-uclibc
|
|||||||
WORKDIR /usr/src
|
WORKDIR /usr/src
|
||||||
|
|
||||||
RUN apt-get install -y libglib2.0-dev zlib1g-dev libpixman-1-dev && \
|
RUN apt-get install -y libglib2.0-dev zlib1g-dev libpixman-1-dev && \
|
||||||
curl -L http://wiki.qemu-project.org/download/qemu-${QEMU_VERSION}.tar.bz2 | tar xj && \
|
curl -L https://download.qemu.org/qemu-${QEMU_VERSION}.tar.bz2 | tar xj && \
|
||||||
cd qemu-${QEMU_VERSION} && \
|
cd qemu-${QEMU_VERSION} && \
|
||||||
./configure --target-list=xtensa-linux-user --prefix=/usr && \
|
./configure --target-list=xtensa-linux-user --prefix=/usr && \
|
||||||
make -j$(nproc) && \
|
make -j$(nproc) && \
|
||||||
|
Loading…
Reference in New Issue
Block a user