qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH v5 13/14] docker: Add EXTRA_CONFIGURE_OPTS


From: Fam Zheng
Subject: [Qemu-devel] [PATCH v5 13/14] docker: Add EXTRA_CONFIGURE_OPTS
Date: Mon, 23 May 2016 14:54:25 +0800

Whatever passed in this variable will be appended to all
configure commands.

Signed-off-by: Fam Zheng <address@hidden>
Reviewed-by: Alex Bennée <address@hidden>
---
 tests/docker/Makefile.include | 3 +++
 tests/docker/common.rc        | 1 +
 2 files changed, 4 insertions(+)

diff --git a/tests/docker/Makefile.include b/tests/docker/Makefile.include
index c00f10c..c7f8c1d 100644
--- a/tests/docker/Makefile.include
+++ b/tests/docker/Makefile.include
@@ -86,6 +86,8 @@ docker:
        @echo
        @echo 'Special variables:'
        @echo '    TARGET_LIST=a,b,c    Override target list in builds.'
+       @echo '    EXTRA_CONFIGURE_OPTS="..."'
+       @echo '                         Extra configure options.'
        @echo '    IMAGES="a b c ..":   Filters which images to build or run.'
        @echo '    TESTS="x y z .."     Filters which tests to run (for 
docker-test).'
        @echo '    J=[0..9]*            Overrides the -jN parameter for make 
commands'
@@ -106,6 +108,7 @@ docker-run-%: docker-qemu-src
                                -t \
                                $(if $(DEBUG),-i,--net=none) \
                                -e TARGET_LIST=$(TARGET_LIST) \
+                               -e EXTRA_CONFIGURE_OPTS=$(EXTRA_CONFIGURE_OPTS) 
\
                                -e V=$V -e J=$J -e DEBUG=$(DEBUG)\
                                -e CCACHE_DIR=/var/tmp/ccache \
                                -v $$(realpath 
$(SRC_COPY)):/var/tmp/qemu:z$(COMMA)ro \
diff --git a/tests/docker/common.rc b/tests/docker/common.rc
index 74b89d6..c493eeb 100755
--- a/tests/docker/common.rc
+++ b/tests/docker/common.rc
@@ -26,6 +26,7 @@ build_qemu()
     $QEMU_SRC/configure \
         --target-list="${TARGET_LIST}" \
         --prefix="$PWD/install" \
+        $EXTRA_CONFIGURE_OPTS \
         "$@"
     make $MAKEFLAGS
 }
-- 
2.8.2




reply via email to

[Prev in Thread] Current Thread [Next in Thread]