[Qemu-devel] [Patch V2 3/4] qemu-ga: Introduce Windows MSI script

2015-05-06 Thread Yossi Hindin
The script enables building Windows MSI installation package on Linux with wixl tool. Signed-off-by: Yossi Hindin --- qga/installer/qemu-ga.wxs | 145 ++ 1 file changed, 145 insertions(+) create mode 100644 qga/installer/qemu-ga.wxs diff --git a

[Qemu-devel] [Patch V2 4/4] qemu-ga: Building Windows MSI installation with configure/Makefile

2015-05-06 Thread Yossi Hindin
Signed-off-by: Yossi Hindin --- Makefile | 24 ++- configure | 66 +++ 2 files changed, 89 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 93af871..ef14cb8 100644 --- a/Makefile +++ b/Makefile

[Qemu-devel] [Patch V2 1/4] qemu-ga: adding vss-[un]install options

2015-05-06 Thread Yossi Hindin
st agent integration with Volume Shadow Service. This commit introdices new options '-s vss-install' and '-s vss-uninstall', affecting only GA VSS COM server registration. The new options are useful for registering and unregistering the COM server during MSI installation, upgr

[Qemu-devel] [Patch V2 2/4] qemu-ga: debug printouts to help troubleshoot installation

2015-05-06 Thread Yossi Hindin
Debug printouts extended, helps installation troubleshooting Signed-off-by: Yossi Hindin --- qga/channel-win32.c | 2 +- qga/commands-win32.c | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/qga/channel-win32.c b/qga/channel-win32.c index 0d5e5f5..04fa5e4 100644 --- a/qga

[Qemu-devel] [Patch V2 0/4] [Patch V2 0/4] Windows MSI installation package

2015-05-06 Thread Yossi Hindin
less some prerequisite is missing and MinGW DLL path variable is computed together with all QEMU GA MSI variables. Also, I've slightly changed Makefile structure so that if MSI build was not configured, Makefile prints suitable message. Yossi Hindin (4): qemu-ga: adding vss-[un]install opti

Re: [Qemu-devel] [PATCH 4/4] qemu-ga: Building Windows MSI installation with configure/Makefile

2015-05-06 Thread Yossi Hindin
I am submitting second version of patches. - Original Message - > From: "Paolo Bonzini" > To: "Yossi Hindin" , qemu-devel@nongnu.org > Cc: yvuge...@redhat.com, dfley...@redhat.com, mdr...@linux.vnet.ibm.com > Sent: Monday, May 4, 2015 12:03:02 PM &g

[Qemu-devel] Windows QEMU GA - ping

2015-05-03 Thread Yossi Hindin
patch/464618 - 464622 Regards, Yossi Hindin

[Qemu-devel] Incorrect e-mails's chain

2015-05-03 Thread Yossi Hindin
Hi While trying to send e-mail with proper 'In-Reply-To' header, I accidentally have sent several e-mail with empty subject and the same body. I apologize for inconvenience. Yossi Hindin

[Qemu-devel] [PATCH 4/4] qemu-ga: Building Windows MSI installation with configure/Makefile

2015-04-26 Thread Yossi Hindin
: Yossi Hindin --- Makefile | 17 - configure | 63 +++ 2 files changed, 79 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 93af871..67b007c 100644 --- a/Makefile +++ b/Makefile @@ -74,7 +74,7

[Qemu-devel] [PATCH 1/4] qemu-ga: adding vss-[un]install options

2015-04-26 Thread Yossi Hindin
st agent integration with Volume Shadow Service. This commit introdices new options '-s vss-install' and '-s vss-uninstall', affecting only GA VSS COM server registration. The new options are useful for registering and unregistering the COM server during MSI installation, upgr

[Qemu-devel] [PATCH 2/4] qemu-ga: debug printouts to help troubleshoot installation

2015-04-26 Thread Yossi Hindin
Debug printouts extended, helps installation troubleshooting Signed-off-by: Yossi Hindin --- qga/channel-win32.c | 2 +- qga/commands-win32.c | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/qga/channel-win32.c b/qga/channel-win32.c index 0d5e5f5..04fa5e4 100644 --- a/qga

[Qemu-devel] [PATCH 3/4] qemu-ga: Introduce Windows MSI script

2015-04-26 Thread Yossi Hindin
The script enables building Windows MSI installation package on Linux with wixl tool. Signed-off-by: Yossi Hindin --- qga/installer/qemu-ga.wxs | 145 ++ 1 file changed, 145 insertions(+) create mode 100644 qga/installer/qemu-ga.wxs diff --git a

[Qemu-devel] [PATCH 0/4] MSI installation for Windows Guest Agent

2015-04-26 Thread Yossi Hindin
The patches' set introduce creation of MSI installer for Windows guest agent with wixl tool. Yossi Hindin (4): qemu-ga: adding vss-[un]install options qemu-ga: debug printouts to help troubleshoot installation qemu-ga: Introduce Windows MSI script qemu-ga: Building Window