[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH RFC 03/10] docker: add a placeholder for handling no
From: |
Alex Bennée |
Subject: |
[Qemu-devel] [PATCH RFC 03/10] docker: add a placeholder for handling non-x86 hosts |
Date: |
Wed, 18 Jul 2018 11:04:58 +0100 |
We want to keep all our variations in one place. This is that place.
Signed-off-by: Alex Bennée <address@hidden>
---
tests/docker/Makefile.include | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/tests/docker/Makefile.include b/tests/docker/Makefile.include
index 22adf6ac73..7d13ddd497 100644
--- a/tests/docker/Makefile.include
+++ b/tests/docker/Makefile.include
@@ -139,6 +139,18 @@ DOCKER_USER_IMAGES += debian-powerpc-user
# tests due to missing system call: 249 which causes an abort
DOCKER_PARTIAL_IMAGES += debian-powerpc-user-cross
+# Modifications for non-x86 hosts
+#
+# While docker itself is now multiarch aware and will generally do the
+# right thing (assuming the source also supports multiple
+# architectures) there are still variations we need to take into
+# account. These are all done here.
+
+ifneq ($(ARCH),x86_64)
+
+
+endif
+
# Expand all the pre-requistes for each docker image and test combination
$(foreach i,$(filter-out $(DOCKER_PARTIAL_IMAGES),$(DOCKER_IMAGES)
$(DOCKER_DEPRECATED_IMAGES)), \
$(foreach t,$(DOCKER_TESTS) $(DOCKER_TOOLS), \
--
2.17.1
- [Qemu-devel] [PATCH RFC 00/10] docker on non-x86 hosts, Alex Bennée, 2018/07/18
- [Qemu-devel] [PATCH RFC 02/10] docker: change docker-image to docker-all-images target, Alex Bennée, 2018/07/18
- [Qemu-devel] [PATCH RFC 03/10] docker: add a placeholder for handling non-x86 hosts,
Alex Bennée <=
- [Qemu-devel] [PATCH RFC 01/10] docker: rename docker-amd64 to docker-host, Alex Bennée, 2018/07/18
- [Qemu-devel] [PATCH RFC 06/10] docker: fall-back to binfmt_misc debian-ppc64el-user-cross on non-x86, Alex Bennée, 2018/07/18
- [Qemu-devel] [PATCH RFC 04/10] docker: don't include docker-arm64-cross on aarch64 hosts, Alex Bennée, 2018/07/18
- [Qemu-devel] [PATCH RFC 07/10] docker: fall-back to binfmt_misc debian-s390x-user-cross on non-x86, Alex Bennée, 2018/07/18
- [Qemu-devel] [PATCH RFC 08/10] docker: disable additional non-x86 images, Alex Bennée, 2018/07/18
- [Qemu-devel] [PATCH RFC 10/10] tests/tcg: debian-mips64el-user-cross fallback, Alex Bennée, 2018/07/18
- [Qemu-devel] [PATCH RFC 09/10] tests: tcg skip docker images we can't build, Alex Bennée, 2018/07/18
- [Qemu-devel] [PATCH RFC 05/10] docker: fall-back to binfmt_misc debian-mips64el-user-cross on non-x86, Alex Bennée, 2018/07/18