2016-12-31 01:00:19 +01:00
|
|
|
# This dockerfile is not meant to be used directly by docker. The
|
2017-09-18 01:35:52 +02:00
|
|
|
# {{}} variables are replaced with values by the makefile. Please generate
|
2016-12-31 01:00:19 +01:00
|
|
|
# the docker image for this file by running:
|
|
|
|
#
|
|
|
|
# make coreboot-sdk
|
|
|
|
#
|
|
|
|
# Variables can be updated on the make command line or left blank to use
|
|
|
|
# the default values set by the makefile.
|
|
|
|
#
|
|
|
|
# SDK_VERSION is used to name the version of the coreboot sdk to use.
|
|
|
|
# Typically, this corresponds to the toolchain version. This
|
|
|
|
# is used to identify this docker image.
|
|
|
|
# DOCKER_COMMIT is the coreboot Commit-ID to build the toolchain from.
|
|
|
|
|
2016-05-16 19:27:56 +02:00
|
|
|
FROM debian:sid
|
2016-12-31 01:00:19 +01:00
|
|
|
MAINTAINER Martin Roth <martin@coreboot.org>
|
2016-05-16 19:27:56 +02:00
|
|
|
|
2016-05-16 19:27:56 +02:00
|
|
|
RUN \
|
|
|
|
useradd -p locked -m coreboot && \
|
|
|
|
apt-get -qq update && \
|
2017-09-18 01:35:52 +02:00
|
|
|
apt-get -qqy install \
|
2017-10-05 04:53:18 +02:00
|
|
|
bc \
|
2017-09-18 01:35:52 +02:00
|
|
|
bison \
|
|
|
|
bzip2 \
|
|
|
|
ccache \
|
|
|
|
cmake \
|
2020-10-25 22:07:07 +01:00
|
|
|
cscope \
|
2017-09-18 01:35:52 +02:00
|
|
|
curl \
|
2018-04-04 15:54:26 +02:00
|
|
|
device-tree-compiler \
|
2017-09-18 01:35:52 +02:00
|
|
|
dh-autoreconf \
|
|
|
|
diffutils \
|
|
|
|
doxygen \
|
2020-10-25 22:07:07 +01:00
|
|
|
exuberant-ctags \
|
2017-09-18 01:35:52 +02:00
|
|
|
flex \
|
|
|
|
g++ \
|
|
|
|
gawk \
|
|
|
|
gcc \
|
|
|
|
git \
|
2018-11-04 16:06:26 +01:00
|
|
|
gnat \
|
2020-02-03 15:59:07 +01:00
|
|
|
golang \
|
util/docker: Update coreboot-sdk dockerfile dependencies list
- Remove archive utilities no longer needed by EM100 build
- Remove duplicate libgmp-dev entry
- Add graphviz needed for doxygen builds
Tested building to verify dependencies:
coreboot(what-jenkins-does), em100, chromeec, flashrom, SeaBIOS, TINT,
memtest86+, tianocore, doxygen, ipxe, FILO, GRUB, libpayload,
depthcharge
Tested ROM in QEMU
Change-Id: Idb5cf43807706b3298ee08f6707f495d3a79abb6
Signed-off-by: Martin Roth <gaumless@gmail.com>
Reviewed-on: https://review.coreboot.org/26393
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
2018-05-19 05:53:24 +02:00
|
|
|
graphviz \
|
2019-04-05 17:53:16 +02:00
|
|
|
libcrypto++-dev \
|
2019-12-23 23:07:03 +01:00
|
|
|
libcurl4 \
|
|
|
|
libcurl4-openssl-dev \
|
2020-02-03 15:59:07 +01:00
|
|
|
libelf-dev \
|
2017-09-18 01:35:52 +02:00
|
|
|
libfreetype6-dev \
|
|
|
|
libftdi-dev \
|
2018-01-29 00:13:38 +01:00
|
|
|
libftdi1-dev \
|
2017-09-18 01:35:52 +02:00
|
|
|
libglib2.0-dev \
|
|
|
|
libgmp-dev \
|
2018-08-16 23:11:55 +02:00
|
|
|
libjaylink-dev \
|
2017-09-18 01:35:52 +02:00
|
|
|
liblzma-dev \
|
|
|
|
libncurses5-dev \
|
|
|
|
libpci-dev \
|
|
|
|
libreadline-dev \
|
2019-04-05 17:53:16 +02:00
|
|
|
libssl-dev \
|
2017-09-18 01:35:52 +02:00
|
|
|
libusb-1.0-0-dev \
|
|
|
|
libusb-dev \
|
|
|
|
libxml2-dev \
|
|
|
|
libyaml-dev \
|
|
|
|
m4 \
|
|
|
|
make \
|
2018-01-23 05:29:06 +01:00
|
|
|
msitools \
|
2017-10-09 00:46:24 +02:00
|
|
|
nasm \
|
2017-09-18 01:35:52 +02:00
|
|
|
openssl \
|
|
|
|
patch \
|
2020-10-25 22:07:07 +01:00
|
|
|
pbzip2 \
|
2017-09-18 01:35:52 +02:00
|
|
|
pkg-config \
|
2020-09-10 16:59:35 +02:00
|
|
|
python2 \
|
|
|
|
python3 \
|
2017-09-18 01:35:52 +02:00
|
|
|
qemu \
|
2018-01-23 05:29:06 +01:00
|
|
|
rsync \
|
2017-09-18 01:35:52 +02:00
|
|
|
shellcheck \
|
|
|
|
subversion \
|
|
|
|
unifont \
|
|
|
|
uuid-dev \
|
|
|
|
vim-common \
|
|
|
|
wget \
|
|
|
|
xz-utils \
|
|
|
|
zlib1g-dev \
|
2018-09-09 19:14:53 +02:00
|
|
|
&& apt-get clean \
|
2020-10-25 22:09:44 +01:00
|
|
|
&& update-alternatives --install /usr/bin/python python /usr/bin/python2 1 \
|
2018-09-09 19:14:53 +02:00
|
|
|
&& ln -s /usr/bin/automake /usr/bin/automake-1.15 \
|
|
|
|
&& ln -s /usr/bin/aclocal /usr/bin/aclocal-1.15
|
2016-05-16 19:27:56 +02:00
|
|
|
|
|
|
|
RUN \
|
2020-10-25 22:16:00 +01:00
|
|
|
cd /tmp && \
|
2017-06-05 12:33:23 +02:00
|
|
|
git clone https://review.coreboot.org/coreboot && \
|
2018-11-04 16:16:29 +01:00
|
|
|
cd coreboot && \
|
2020-10-25 22:16:00 +01:00
|
|
|
git checkout {{DOCKER_COMMIT}}; \
|
2018-11-04 16:16:29 +01:00
|
|
|
if echo {{CROSSGCC_PARAM}} | grep -q ^all; then \
|
2020-10-25 22:16:00 +01:00
|
|
|
make -C /tmp/coreboot/util/crossgcc/ build_clang \
|
2018-11-04 16:16:29 +01:00
|
|
|
BUILD_LANGUAGES=c,ada CPUS=$(nproc) DEST=/opt/xgcc; \
|
2020-10-25 22:16:00 +01:00
|
|
|
fi; \
|
|
|
|
make -C /tmp/coreboot/util/crossgcc/ {{CROSSGCC_PARAM}} \
|
2017-03-23 23:13:58 +01:00
|
|
|
BUILD_LANGUAGES=c,ada CPUS=$(nproc) DEST=/opt/xgcc && \
|
2020-10-25 22:16:00 +01:00
|
|
|
rm -rf /tmp/coreboot
|
2016-05-16 19:27:56 +02:00
|
|
|
|
|
|
|
RUN mkdir /home/coreboot/.ccache && \
|
|
|
|
chown coreboot:coreboot /home/coreboot/.ccache && \
|
|
|
|
mkdir /home/coreboot/cb_build && \
|
2017-09-18 01:35:52 +02:00
|
|
|
chown coreboot:coreboot /home/coreboot/cb_build && \
|
|
|
|
echo "export PATH=$PATH:/opt/xgcc/bin" >> /home/coreboot/.bashrc && \
|
|
|
|
echo "export SDK_VERSION={{SDK_VERSION}}" >> /home/coreboot/.bashrc && \
|
|
|
|
echo "export SDK_COMMIT={{DOCKER_COMMIT}}" >> /home/coreboot/.bashrc
|
|
|
|
|
2016-05-16 19:27:56 +02:00
|
|
|
VOLUME /home/coreboot/.ccache
|
|
|
|
|
2016-05-16 19:27:56 +02:00
|
|
|
ENV PATH $PATH:/opt/xgcc/bin
|
2016-12-31 01:00:19 +01:00
|
|
|
ENV SDK_VERSION={{SDK_VERSION}}
|
|
|
|
ENV SDK_COMMIT={{DOCKER_COMMIT}}
|
2016-05-16 19:27:56 +02:00
|
|
|
USER coreboot
|
2020-10-25 22:19:40 +01:00
|
|
|
|
|
|
|
# Test the built image
|
|
|
|
RUN mkdir -p /tmp/work && \
|
|
|
|
cd /tmp/work && \
|
|
|
|
git clone https://review.coreboot.org/bios_extract.git && \
|
|
|
|
make -C bios_extract && \
|
|
|
|
git clone https://review.coreboot.org/memtest86plus.git && \
|
|
|
|
make -C memtest86plus && \
|
|
|
|
git clone https://review.coreboot.org/flashrom.git && \
|
|
|
|
CONFIG_EVERYTHING=yes make -C flashrom && \
|
|
|
|
git clone https://review.coreboot.org/em100.git && \
|
|
|
|
make -C em100 && \
|
|
|
|
git clone https://review.coreboot.org/coreboot.git && \
|
2021-01-26 23:21:20 +01:00
|
|
|
(cd coreboot && git submodule update --init --checkout ) && \
|
2020-10-25 22:19:40 +01:00
|
|
|
make -C coreboot CPUS=$(nproc) test-abuild && \
|
|
|
|
\
|
|
|
|
make -C coreboot olddefconfig && \
|
|
|
|
make -C coreboot all -j && \
|
|
|
|
make -C coreboot printall && \
|
|
|
|
make -C coreboot filelist && \
|
|
|
|
make -C coreboot ctags-project && \
|
|
|
|
make -C coreboot cscope-project && \
|
|
|
|
\
|
|
|
|
make -C coreboot doxygen -j && \
|
|
|
|
make -C coreboot test-payloads&& \
|
|
|
|
make -C coreboot test-tools -j && \
|
|
|
|
make -C coreboot test-lint -j && \
|
|
|
|
make -C coreboot test-cleanup -j && \
|
|
|
|
cd && \
|
|
|
|
rm -rf /tmp/work/
|