mirror of https://github.com/xqemu/xqemu.git
docker: add debian/armel based on Stretch
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
This commit is contained in:
parent
aaa6ccc9ff
commit
31e205d1bf
|
@ -56,6 +56,7 @@ docker-image-%: $(DOCKER_FILES_DIR)/%.docker
|
||||||
"BUILD","$*")
|
"BUILD","$*")
|
||||||
|
|
||||||
# Enforce dependancies for composite images
|
# Enforce dependancies for composite images
|
||||||
|
docker-image-debian-armel-cross: docker-image-debian9
|
||||||
docker-image-debian-armhf-cross: docker-image-debian9
|
docker-image-debian-armhf-cross: docker-image-debian9
|
||||||
docker-image-debian-arm64-cross: docker-image-debian9
|
docker-image-debian-arm64-cross: docker-image-debian9
|
||||||
docker-image-debian-mipsel-cross: docker-image-debian9
|
docker-image-debian-mipsel-cross: docker-image-debian9
|
||||||
|
|
|
@ -0,0 +1,24 @@
|
||||||
|
#
|
||||||
|
# Docker armel cross-compiler target
|
||||||
|
#
|
||||||
|
# This docker target builds on the debian Stretch base image.
|
||||||
|
#
|
||||||
|
FROM qemu:debian9
|
||||||
|
MAINTAINER Philippe Mathieu-Daudé <f4bug@amsat.org>
|
||||||
|
|
||||||
|
# Add the foreign architecture we want and install dependencies
|
||||||
|
RUN dpkg --add-architecture armel && \
|
||||||
|
apt update
|
||||||
|
RUN apt install -yy crossbuild-essential-armel
|
||||||
|
RUN DEBIAN_FRONTEND=noninteractive eatmydata \
|
||||||
|
apt-get build-dep -yy -a armel qemu
|
||||||
|
|
||||||
|
# Specify the cross prefix for this image (see tests/docker/common.rc)
|
||||||
|
ENV QEMU_CONFIGURE_OPTS --cross-prefix=arm-linux-gnueabi-
|
||||||
|
|
||||||
|
RUN DEBIAN_FRONTEND=noninteractive eatmydata \
|
||||||
|
apt-get install -y --no-install-recommends \
|
||||||
|
libbz2-dev:armel \
|
||||||
|
liblzo2-dev:armel \
|
||||||
|
librdmacm-dev:armel \
|
||||||
|
libsnappy-dev:armel
|
Loading…
Reference in New Issue