Anthony PERARD
2013-Oct-08 12:59 UTC
[PATCH 0/2] Few qemu-xen configuration fixes and improvement.
osstest is not happy with a path been created by the QEMU build system (/usr/local/var/run). Those two patchs are fixing that and improve the call to qemu''s configure. Anthony PERARD (2): qemu-xen: Disabling build of guest-agent. qemu-xen: Set localstatedir to /var. tools/Makefile | 2 ++ 1 file changed, 2 insertions(+) -- Anthony PERARD
Anthony PERARD
2013-Oct-08 12:59 UTC
[PATCH 1/2] qemu-xen: Disabling build of guest-agent.
It is not use when QEMU is run with Xen. Signed-off-by: Anthony PERARD <anthony.perard@citrix.com> --- tools/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/Makefile b/tools/Makefile index 066df66..206b79a 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -201,6 +201,7 @@ subdir-all-qemu-xen-dir: qemu-xen-dir-find --datadir=$(SHAREDIR)/qemu-xen \ --disable-kvm \ --disable-docs \ + --disable-guest-agent \ --python=$(PYTHON) \ $(IOEMU_CONFIGURE_CROSS); \ $(MAKE) all -- Anthony PERARD
This path is used by the QEMU build system to create the /run directory. If local-state-dir is not set, the result become $prefix/var which is not an acceptable path. Signed-off-by: Anthony PERARD <anthony.perard@citrix.com> --- tools/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/Makefile b/tools/Makefile index 206b79a..b73f0a9 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -199,6 +199,7 @@ subdir-all-qemu-xen-dir: qemu-xen-dir-find -L$(XEN_ROOT)/tools/xenstore" \ --bindir=$(LIBEXEC) \ --datadir=$(SHAREDIR)/qemu-xen \ + --localstatedir=/var \ --disable-kvm \ --disable-docs \ --disable-guest-agent \ -- Anthony PERARD
Ian Campbell
2013-Oct-10 08:42 UTC
Re: [PATCH 0/2] Few qemu-xen configuration fixes and improvement.
On Tue, 2013-10-08 at 13:59 +0100, Anthony PERARD wrote:> osstest is not happy with a path been created by the QEMU build system > (/usr/local/var/run). Those two patchs are fixing that and improve the call to > qemu''s configure.Acked + applied both. Once this passes xen-unstables gate then that ought to unblock the qemu osstest failures I think.