71b8322712
Starting with Qemu 6.1.0, gcc 7.5 is needed to build. Since we build host-qemu package for qemu defconfig, we have to upgrade to (at least) Debian buster that provide gcc 8 as host compiler. While testing this upgrate, the test_edk2 failed since it actually requires Qemu >= 4.1.0 to support arm SBSA reference machine [1]. Debian Buster only provide Qemu 3.1. Finally, upgrade to Debian bullseye but it requires some linux kernel version bump in several defconfigs since host gcc is based on gcc-10 [2]. [1] https://git.qemu.org/?p=qemu.git;a=commit;h=64580903c2b3aee08d74d64e6248a313b246cb69 [2] http://git.kernel.org/cgit/linux/kernel/git/stable/linux-stable.git/commit/?id=621f2ded601546119fabccd1651b1ae29d26cd38 Signed-off-by: Romain Naour <romain.naour@gmail.com> [Arnout: don't install python] Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
64 lines
1.8 KiB
Docker
64 lines
1.8 KiB
Docker
# This Dockerfile generates the docker image that gets used by Gitlab CI
|
|
# To build it (YYYYMMDD.HHMM is the current date and time in UTC):
|
|
# sudo docker build -t buildroot/base:YYYYMMDD.HHMM support/docker
|
|
# sudo docker push buildroot/base:YYYYMMDD.HHMM
|
|
|
|
# We use a specific tag for the base image *and* the corresponding date
|
|
# for the repository., so do not forget to update the apt-sources.list
|
|
# file that is shipped next to this Dockerfile.
|
|
FROM debian:bullseye-20210902
|
|
|
|
LABEL maintainer="Buildroot mailing list <buildroot@buildroot.org>" \
|
|
vendor="Buildroot" \
|
|
description="Container with everything needed to run Buildroot"
|
|
|
|
# Setup environment
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
# This repository can be a bit slow at times. Don't panic...
|
|
COPY apt-sources.list /etc/apt/sources.list
|
|
|
|
# The container has no package lists, so need to update first
|
|
RUN dpkg --add-architecture i386 && \
|
|
apt-get update -y
|
|
RUN apt-get install -y --no-install-recommends \
|
|
bc \
|
|
build-essential \
|
|
bzr \
|
|
ca-certificates \
|
|
cmake \
|
|
cpio \
|
|
cvs \
|
|
file \
|
|
g++-multilib \
|
|
git \
|
|
libc6:i386 \
|
|
libncurses5-dev \
|
|
locales \
|
|
mercurial \
|
|
python3 \
|
|
python3-flake8 \
|
|
python3-nose2 \
|
|
python3-pexpect \
|
|
qemu-system-arm \
|
|
qemu-system-x86 \
|
|
rsync \
|
|
subversion \
|
|
unzip \
|
|
wget \
|
|
&& \
|
|
apt-get -y autoremove && \
|
|
apt-get -y clean
|
|
|
|
# To be able to generate a toolchain with locales, enable one UTF-8 locale
|
|
RUN sed -i 's/# \(en_US.UTF-8\)/\1/' /etc/locale.gen && \
|
|
/usr/sbin/locale-gen
|
|
|
|
RUN useradd -ms /bin/bash br-user && \
|
|
chown -R br-user:br-user /home/br-user
|
|
|
|
USER br-user
|
|
WORKDIR /home/br-user
|
|
ENV HOME /home/br-user
|
|
ENV LC_ALL en_US.UTF-8
|