diff options
author | Patrick Georgi <patrick@georgi-clan.de> | 2016-09-18 20:11:15 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-09-26 21:47:52 +0200 |
commit | fe222005b813975d7370fd8c91a10fc46e4f9c93 (patch) | |
tree | 81b08c5a9a407142d06dcd54a425dead44298457 | |
parent | 89189685570d33958aa27764614ab92f39b7c844 (diff) | |
download | coreboot-fe222005b813975d7370fd8c91a10fc46e4f9c93.tar.xz |
crossgcc: Add Dockerfile
The dockerfile allows building an image with the current tree's
crossgcc code.
Change-Id: I59cd85b0acdf8776e3e090742d7f5d89d1c154e7
Signed-off-by: Patrick Georgi <patrick@georgi-clan.de>
Reviewed-on: https://review.coreboot.org/16636
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Martin Roth <martinroth@google.com>
-rw-r--r-- | util/crossgcc/Dockerfile | 36 |
1 files changed, 36 insertions, 0 deletions
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 <gaumless@gmail.com> + +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 |