search for: qga64

Displaying 9 results from an estimated 9 matches for "qga64".

2020 Jan 27
1
Re: [PATCH 1/2] windows: fix detection of qemu-ga installer on RHV
...;qemu-ga-i386.msi") > - | ("i386", "RHEV-QGA.msi") > + | ("i386", "rhev-qga.msi") > | ("x86_64", "qemu-ga-x64.msi") > | ("x86_64", "qemu-ga-x86_64.msi") > - | ("x86_64", "RHEV-QGA64.msi") -> true > + | ("x86_64", "rhev-qga64.msi") > | _ -> false Actually, after another pre-push re-read, this function (virtio_iso_path_matches_qemu_ga) will always return false now! -- Pino Toscano
2019 Nov 21
7
[PATCH 0/2] Fixes and tweak to the installation of qemu-ga MSI
This, together with the changes to common repo are fixes to the installation qemu-ga MSI. There is still an issue that I did not figure yet how to fix. On Windows 10 it fails to register the QEMU-GA service. Tomáš Golembiovský (2): windows: fix detection of qemu-ga installer on RHV windows: small tweaks of qemu-ga firstboot script v2v/convert_windows.ml | 8 +++++++- v2v/windows_virtio.ml
2019 Nov 21
0
[PATCH 1/2] windows: fix detection of qemu-ga installer on RHV
...("i386", "qemu-ga-i386.msi") - | ("i386", "RHEV-QGA.msi") + | ("i386", "rhev-qga.msi") | ("x86_64", "qemu-ga-x64.msi") | ("x86_64", "qemu-ga-x86_64.msi") - | ("x86_64", "RHEV-QGA64.msi") -> true + | ("x86_64", "rhev-qga64.msi") | _ -> false (* The following function is only exported for unit tests. *) -- 2.24.0
2020 Feb 05
3
[PATCH v2 0/2] Fixes and tweak to the installation of qemu-ga MSI
This, together with the changes to common repo are fixes to the installation qemu-ga MSI. There is still an issue that I did not figure yet how to fix. On Windows 10 it fails to register the QEMU-GA service. Tomáš Golembiovský (2): windows: fix detection of qemu-ga installer on RHV windows: small tweaks of qemu-ga firstboot script v2v/convert_windows.ml | 8 +++++++- v2v/windows_virtio.ml
2020 Jan 22
0
[v2v PATCH 3/3] v2v: try to get windows driver files from libosinfo
...n or virt-v2v is broken in some way. Please report this as a bug with a full debug log.")) and copy_qemu_ga g inspect = copy_from_virtio_win g inspect "/" "/" @@ -460,6 +461,60 @@ and virtio_iso_path_matches_qemu_ga path inspect = | ("x86_64", "RHEV-QGA64.msi") -> true | _ -> false +(* Look up in libosinfo for the OS, and copy all the locally + * available files specified as drivers for that OS to the [destdir]. + * + * This function does nothing in case either: + * - the osinfo short ID is not found in the libosinfo DB + * - the OS...
2020 Jan 28
0
[v2v PATCH v2 3/3] v2v: try to get windows driver files from libosinfo
...n or virt-v2v is broken in some way. Please report this as a bug with a full debug log.")) and copy_qemu_ga g inspect = copy_from_virtio_win g inspect "/" "/" @@ -460,6 +461,75 @@ and virtio_iso_path_matches_qemu_ga path inspect = | ("x86_64", "RHEV-QGA64.msi") -> true | _ -> false +(* Look up in libosinfo for the OS, and copy all the locally + * available files specified as drivers for that OS to the [destdir]. + * + * This function does nothing in case either: + * - the osinfo short ID is not found in the libosinfo DB + * - the OS...
2019 Oct 08
1
[PATCH] v2v: windows: install QEMU Guest Agent MSI
...quot;i386", "qemu-ga-x86.msi") + | ("i386", "qemu-ga-i386.msi") + | ("i386", "RHEV-QGA.msi") + | ("x86_64", "qemu-ga-x64.msi") + | ("x86_64", "qemu-ga-x86_64.msi") + | ("x86_64", "RHEV-QGA64.msi") -> true + | _ -> false + (* The following function is only exported for unit tests. *) module UNIT_TESTS = struct let virtio_iso_path_matches_guest_os = virtio_iso_path_matches_guest_os diff --git a/v2v/windows_virtio.mli b/v2v/windows_virtio.mli index ae3b7e865..731dbd6f0 10...
2020 Jan 22
4
[v2v PATCH 0/3] Use libosinfo for query device drivers
This patch series integrates libosinfo in virt-v2v to get the list of files for Windows from libosinfo, if possible. The actual data is still from virtio-win, just unpacked. Pino Toscano (3): build: require libosinfo v2v: add a minimal libosinfo interface v2v: try to get windows driver files from libosinfo m4/guestfs-v2v.m4 | 3 + v2v/Makefile.am | 9 +-
2020 Jan 28
4
[v2v PATCH v2 0/3] Use libosinfo for query device drivers
This patch series integrates libosinfo in virt-v2v to get the list of files for Windows from libosinfo, if possible. The actual data is still from virtio-win, just unpacked. Changes from v1: - adapt to use the priority in libosinfo 1.7.0+ - filter out non-pre-installable drivers - collect all the drivers matching the requirements, not just the first, sorting them by priority like libosinfo does