From fe222005b813975d7370fd8c91a10fc46e4f9c93 Mon Sep 17 00:00:00 2001 From: Patrick Georgi Date: Sun, 18 Sep 2016 20:11:15 +0200 Subject: crossgcc: Add Dockerfile The dockerfile allows building an image with the current tree's crossgcc code. Change-Id: I59cd85b0acdf8776e3e090742d7f5d89d1c154e7 Signed-off-by: Patrick Georgi Reviewed-on: https://review.coreboot.org/16636 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel Reviewed-by: Martin Roth --- util/crossgcc/Dockerfile | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 util/crossgcc/Dockerfile diff --git a/util/crossgcc/Dockerfile b/util/crossgcc/Dockerfile new file mode 100644 index 0000000000..da3c840501 --- /dev/null +++ b/util/crossgcc/Dockerfile @@ -0,0 +1,36 @@ +FROM debian:sid +MAINTAINER Martin Roth + +RUN \ + useradd -p locked -m coreboot && \ + apt-get -qq update && \ + apt-get -qq upgrade && \ + apt-get -qqy install gcc g++ 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 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 -- cgit v1.2.3