summaryrefslogtreecommitdiffstats
path: root/util/crossgcc
diff options
context:
space:
mode:
authorMartin Roth <martin@coreboot.org>2020-12-24 09:08:23 -0700
committerPatrick Georgi <pgeorgi@google.com>2021-01-25 08:52:24 +0000
commitc6c64e844b8dd96a4019e1deb80a35428fe9a1fa (patch)
treea3ee44e0497729394191048eb2901034729da7f9 /util/crossgcc
parent2e3edcfbe0a9057d53b9f6eb2f3f433b3d3f5e5e (diff)
downloadcoreboot-c6c64e844b8dd96a4019e1deb80a35428fe9a1fa.tar.gz
coreboot-c6c64e844b8dd96a4019e1deb80a35428fe9a1fa.tar.bz2
coreboot-c6c64e844b8dd96a4019e1deb80a35428fe9a1fa.zip
util/crossgcc: Remove obsolete dockerfile
This file was added here before util/docker existed. Anyone using this dockerfile should use the coreboot-sdk docker container instead. Signed-off-by: Martin Roth <martin@coreboot.org> Change-Id: I7114abc9c91ba2d6fcfef80ae6e7d1a7a3d253cf Reviewed-on: https://review.coreboot.org/c/coreboot/+/48902 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'util/crossgcc')
-rw-r--r--util/crossgcc/Dockerfile37
1 files changed, 0 insertions, 37 deletions
diff --git a/util/crossgcc/Dockerfile b/util/crossgcc/Dockerfile
deleted file mode 100644
index 9f1a58c76015..000000000000
--- a/util/crossgcc/Dockerfile
+++ /dev/null
@@ -1,37 +0,0 @@
-FROM debian:sid
-MAINTAINER Martin Roth <gaumless@gmail.com>
-
-RUN \
- useradd -p locked -m coreboot && \
- apt-get -qq update && \
- apt-get -qq upgrade && \
- apt-get -qqy install gcc g++ gnat-6 make patch python diffutils bison \
- flex git doxygen ccache subversion p7zip-full unrar-free \
- m4 wget curl bzip2 vim-common cmake xz-utils pkg-config \
- dh-autoreconf unifont \
- libssl-dev libgmp-dev zlib1g-dev libpci-dev liblzma-dev \
- libyaml-dev libncurses5-dev uuid-dev libusb-dev libftdi-dev \
- libusb-1.0-0-dev libreadline-dev libglib2.0-dev libgmp-dev \
- libelf-dev libxml2-dev libfreetype6-dev && \
- apt-get clean
-
-COPY buildgcc Makefile* root/coreboot/util/crossgcc/
-COPY patches/ /root/coreboot/util/crossgcc/patches/
-COPY sum/ /root/coreboot/util/crossgcc/sum/
-COPY tarballs/ /root/coreboot/util/crossgcc/tarballs/
-
-RUN \
- cd /root/coreboot/util/crossgcc && \
- make all_without_gdb \
- BUILD_LANGUAGES=c,ada CPUS=$(nproc) DEST=/opt/xgcc && \
- cd /root && \
- rm -rf coreboot
-
-RUN mkdir /home/coreboot/.ccache && \
- chown coreboot:coreboot /home/coreboot/.ccache && \
- mkdir /home/coreboot/cb_build && \
- chown coreboot:coreboot /home/coreboot/cb_build
-VOLUME /home/coreboot/.ccache
-
-ENV PATH $PATH:/opt/xgcc/bin
-USER coreboot