Re: [Qemu-devel] [PATCH V2 01/10] configure: Introduce --enable-xen-pci-passthrough.

2011-10-24 Thread Anthony PERARD
On Thu, Oct 20, 2011 at 11:57, Stefano Stabellini stefano.stabell...@eu.citrix.com wrote: diff --git a/Makefile.target b/Makefile.target index 417f23e..c518103 100644 --- a/Makefile.target +++ b/Makefile.target @@ -208,6 +208,8 @@ obj-$(CONFIG_NO_XEN) += xen-stub.o  obj-i386-$(CONFIG_XEN)

Re: [Qemu-devel] [PATCH V2 01/10] configure: Introduce --enable-xen-pci-passthrough.

2011-10-20 Thread Stefano Stabellini
On Wed, 19 Oct 2011, Anthony PERARD wrote: Signed-off-by: Anthony PERARD anthony.per...@citrix.com --- Makefile.target |2 ++ configure | 21 + 2 files changed, 23 insertions(+), 0 deletions(-) diff --git a/Makefile.target b/Makefile.target index

Re: [Qemu-devel] [PATCH V2 01/10] configure: Introduce --enable-xen-pci-passthrough.

2011-10-19 Thread Peter Maydell
On 19 October 2011 14:56, Anthony PERARD anthony.per...@citrix.com wrote: +if test $xen_pci_passthrough != no; then +  if test $xen = yes -a $linux = yes; then +    xen_pci_passthrough=yes +  else +    if test $xen_pci_passthrough = yes; then +      feature_not_found Xen PCI Passthrough

Re: [Qemu-devel] [PATCH V2 01/10] configure: Introduce --enable-xen-pci-passthrough.

2011-10-19 Thread Anthony PERARD
On Wed, Oct 19, 2011 at 15:48, Peter Maydell peter.mayd...@linaro.org wrote: On 19 October 2011 14:56, Anthony PERARD anthony.per...@citrix.com wrote: +if test $xen_pci_passthrough != no; then +  if test $xen = yes -a $linux = yes; then +    xen_pci_passthrough=yes +  else +    if test

[Qemu-devel] [PATCH V2 01/10] configure: Introduce --enable-xen-pci-passthrough.

2011-10-19 Thread Anthony PERARD
Signed-off-by: Anthony PERARD anthony.per...@citrix.com --- Makefile.target |2 ++ configure | 21 + 2 files changed, 23 insertions(+), 0 deletions(-) diff --git a/Makefile.target b/Makefile.target index 417f23e..c518103 100644 --- a/Makefile.target +++