2b5e0c9ff8
No need to recompile the dtc submodule here again and again, we can use the pre-built binary from the distribution instead. (And this will also help in case we finally get rid of the dtc submodule in QEMU one day) Message-Id: <20230124143824.844040-1-thuth@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Thomas Huth <thuth@redhat.com>
35 lines
732 B
Docker
35 lines
732 B
Docker
FROM registry.fedoraproject.org/fedora:34
|
|
|
|
ENV PACKAGES \
|
|
bison \
|
|
bzip2 \
|
|
ccache \
|
|
diffutils \
|
|
flex \
|
|
findutils \
|
|
gcc \
|
|
git \
|
|
libfdt-devel.i686 \
|
|
libffi-devel.i686 \
|
|
libselinux-devel.i686 \
|
|
libtasn1-devel.i686 \
|
|
libzstd-devel.i686 \
|
|
make \
|
|
meson \
|
|
ninja-build \
|
|
glib2-devel.i686 \
|
|
glibc-devel.i686 \
|
|
glibc-static.i686 \
|
|
gnutls-devel.i686 \
|
|
nettle-devel.i686 \
|
|
pcre-devel.i686 \
|
|
pixman-devel.i686 \
|
|
sysprof-capture-devel.i686 \
|
|
zlib-devel.i686
|
|
|
|
ENV QEMU_CONFIGURE_OPTS --cpu=i386 --disable-vhost-user
|
|
ENV PKG_CONFIG_LIBDIR /usr/lib/pkgconfig
|
|
|
|
RUN dnf update -y && dnf install -y $PACKAGES
|
|
RUN rpm -q $PACKAGES | sort > /packages.txt
|