From 8c18e4a7f173d73451422dd4c1176f441ce6c92a Mon Sep 17 00:00:00 2001 From: Bensuperpc Date: Sat, 8 May 2021 13:22:40 +0200 Subject: [PATCH] Fix linux-mipsel --- linux-mipsel/Dockerfile.in | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/linux-mipsel/Dockerfile.in b/linux-mipsel/Dockerfile.in index 6452456..d94a480 100644 --- a/linux-mipsel/Dockerfile.in +++ b/linux-mipsel/Dockerfile.in @@ -5,16 +5,13 @@ MAINTAINER Sergi Alvarez "pancake@nopcode.org" # VFP instructions (mipshf). # From https://wiki.debian.org/CrossToolchains, installing for stretch -RUN echo "deb http://emdebian.org/tools/debian/ stretch main" > /etc/apt/sources.list.d/emdebian.list \ -&& curl http://emdebian.org/tools/debian/emdebian-toolchain-archive.key | apt-key add - \ -&& sed -i 's/httpredir.debian.org/http.debian.net/' /etc/apt/sources.list \ -&& dpkg --add-architecture mipsel \ -&& apt-get update && apt-get install -y crossbuild-essential-mipsel +RUN apt-get update && apt-get install -y crossbuild-essential-mipsel # The cross-compiling emulator RUN apt-get update && apt-get install -y \ qemu-user \ - qemu-user-static + qemu-user-static \ + && apt-get clean --yes ENV CROSS_TRIPLE mipsel-linux-gnu ENV CROSS_ROOT /usr/bin