From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52888) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bHvA5-00086n-Ht for qemu-devel@nongnu.org; Tue, 28 Jun 2016 11:42:55 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bHvA1-0002Sg-U4 for qemu-devel@nongnu.org; Tue, 28 Jun 2016 11:42:52 -0400 Received: from mail-wm0-x231.google.com ([2a00:1450:400c:c09::231]:37457) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bHvA1-0002SZ-Mx for qemu-devel@nongnu.org; Tue, 28 Jun 2016 11:42:49 -0400 Received: by mail-wm0-x231.google.com with SMTP id a66so33935558wme.0 for ; Tue, 28 Jun 2016 08:42:49 -0700 (PDT) From: =?UTF-8?q?Alex=20Benn=C3=A9e?= Date: Tue, 28 Jun 2016 16:42:39 +0100 Message-Id: <1467128564-13476-1-git-send-email-alex.bennee@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PATCH v3 0/5] Support building qemu-user powered docker test images List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: famz@redhat.com, riku.voipio@linaro.org, =?UTF-8?q?Alex=20Benn=C3=A9e?= This is the latest iteration of my qemu-user support inside Docker. They apply directly on top of master. I've made the changes suggested in the last review and split apart another patch. I've also added a new update command so a tagged image can be updated with the latest QEMU. To use, first ensure you build the debian-bootstrap image: DEB_ARCH=armhf DEB_TYPE=testing \ ./tests/docker/docker.py build qemu:debian-bootstrap \ ./tests/docker/dockerfiles/debian-bootstrap.docker \ --include-executable=./arm-linux-user/qemu-arm And then run the test quick target: make docker-test-quick@debian-bootstrap J=9 V=1 To update the installed QEMU: ./tests/docker/docker.py update qemu:debian-bootstrap \ ./arm-linux-user/qemu-arm To run a throwaway container: docker run -t -i --rm qemu:debian-bootstrap I'll leave it up to you how we cleanly integrate multi-arch builds into the Make system ;-) Alex Bennée (5): tests/docker/docker.py: docker_dir outside build tests/docker/docker.py: support --include-executable tests/docker/docker.py: check and run .pre script tests/docker/dockerfiles: new debian-bootstrap.docker tests/docker/docker.py: add update operation tests/docker/docker.py | 144 +++++++++++++++++++++-- tests/docker/dockerfiles/debian-bootstrap.docker | 21 ++++ tests/docker/dockerfiles/debian-bootstrap.pre | 5 + 3 files changed, 161 insertions(+), 9 deletions(-) create mode 100644 tests/docker/dockerfiles/debian-bootstrap.docker create mode 100755 tests/docker/dockerfiles/debian-bootstrap.pre -- 2.7.4