Displaying 17 results from an estimated 17 matches for "qxldd".
2015 Oct 26
3
[PATCH] v2v: virtio-win: include *.dll too
Windows QXL drivers include also qxldd.dll which used to get filtered
out and not copied over into the guest. As a result QXL driver failed
to install due to a missing file.
Correct that, and update the tests accordingly.
Signed-off-by: Roman Kagan <rkagan@virtuozzo.com>
---
v2v/fake-virtio-win/drivers/i386/Win7/qxldd.dll | 1...
2016 Mar 04
2
[PATCH v2 0/2] v2v: Copy *.dll files since they can be part of the driver (RHBZ#1311373).
Since v1:
- Fix a bug in the calculation of lc_basename. By luck this doesn't
affect anything given the contents of the current ISO.
- Don't copy the WdfCoInstaller*.dll files.
Rich.
2016 Mar 04
3
[PATCH] v2v: Copy *.dll files since they can be part of the driver (RHBZ#1311373).
Commit 47b5f245bec908f803f0a89c3b1e3166cfe33aad originally introduced
the filtering of files by extension. For the QXL driver at least,
there is a qxldd.dll file which is part of the driver, so that must be
copied to the guest as well.
This patch will cause 'WdfCoInstaller*.dll' files to be copied too.
While I'm not sure if this is correct, it seems as if it will be safe
as although there are multiple copies of this file, they are all...
2016 Mar 04
2
[PATCH v3 0/2] v2v: Copy *.dll files since they can be part of the
v2 -> v3
- Don't make a special case for WdfCoInstaller* files. There is a
difference of opinion about whether copying these is necessary, but
it seems like it is not harmful.
Rich.
2016 Jun 04
1
[PATCH v2] v2v: copy all driver files into guest
...e winxp_32;
@@ -619,7 +619,7 @@ let test_virtio_iso_path_matches_guest_os ctx =
"drivers/i386/Win2008/vioscsi.inf", Some win2k8_32;
"drivers/i386/Win7/viostor.inf", Some win7_32;
"drivers/i386/Win7/viostor.sys", Some win7_32;
- "drivers/i386/Win7/qxldd.dll", None;
+ "drivers/i386/Win7/qxldd.dll", Some win7_32;
"drivers/i386/Win7/qxl.sys", Some win7_32;
"drivers/i386/Win7/vioscsi.cat", Some win7_32;
"drivers/i386/Win7/netkvm.inf", Some win7_32;
@@ -647,7 +647,7 @@ let test_virtio_iso_p...
2015 Oct 27
2
Re: [PATCH] v2v: virtio-win: include *.dll too
On Tue, Oct 27, 2015 at 09:12:41AM +0000, Richard W.M. Jones wrote:
> On Mon, Oct 26, 2015 at 09:00:03PM +0300, Roman Kagan wrote:
> > Windows QXL drivers include also qxldd.dll which used to get filtered
> > out and not copied over into the guest. As a result QXL driver failed
> > to install due to a missing file.
> > (* Skip files without specific extensions. *)
> > - let extensions = ["cat"; "inf"; "pdb"...
2016 Mar 04
1
Re: [PATCH] v2v: Copy *.dll files since they can be part of the driver (RHBZ#1311373).
...04, 2016 at 01:58:12PM +0300, Roman Kagan wrote:
> On Fri, Mar 04, 2016 at 09:11:00AM +0000, Richard W.M. Jones wrote:
> > Commit 47b5f245bec908f803f0a89c3b1e3166cfe33aad originally introduced
> > the filtering of files by extension. For the QXL driver at least,
> > there is a qxldd.dll file which is part of the driver, so that must be
> > copied to the guest as well.
> >
> > This patch will cause 'WdfCoInstaller*.dll' files to be copied too.
> > While I'm not sure if this is correct,
>
> It is. They are coinstaller dlls and are men...
2015 Oct 27
3
Re: [PATCH] v2v: virtio-win: include *.dll too
...Richard W.M. Jones wrote:
> On Tue, Oct 27, 2015 at 02:08:42PM +0300, Roman Kagan wrote:
> > On Tue, Oct 27, 2015 at 09:12:41AM +0000, Richard W.M. Jones wrote:
> > > On Mon, Oct 26, 2015 at 09:00:03PM +0300, Roman Kagan wrote:
> > > > Windows QXL drivers include also qxldd.dll which used to get filtered
> > > > out and not copied over into the guest. As a result QXL driver failed
> > > > to install due to a missing file.
> > > > (* Skip files without specific extensions. *)
> > > > - let extensions = ["cat...
2015 Oct 27
0
Re: [PATCH] v2v: virtio-win: include *.dll too
On Mon, Oct 26, 2015 at 09:00:03PM +0300, Roman Kagan wrote:
> Windows QXL drivers include also qxldd.dll which used to get filtered
> out and not copied over into the guest. As a result QXL driver failed
> to install due to a missing file.
> (* Skip files without specific extensions. *)
> - let extensions = ["cat"; "inf"; "pdb"; "sys"] i...
2015 Oct 27
0
Re: [PATCH] v2v: virtio-win: include *.dll too
On Tue, Oct 27, 2015 at 02:08:42PM +0300, Roman Kagan wrote:
> On Tue, Oct 27, 2015 at 09:12:41AM +0000, Richard W.M. Jones wrote:
> > On Mon, Oct 26, 2015 at 09:00:03PM +0300, Roman Kagan wrote:
> > > Windows QXL drivers include also qxldd.dll which used to get filtered
> > > out and not copied over into the guest. As a result QXL driver failed
> > > to install due to a missing file.
> > > (* Skip files without specific extensions. *)
> > > - let extensions = ["cat"; "inf&qu...
2016 Mar 04
0
Re: [PATCH] v2v: Copy *.dll files since they can be part of the driver (RHBZ#1311373).
On Fri, Mar 04, 2016 at 09:11:00AM +0000, Richard W.M. Jones wrote:
> Commit 47b5f245bec908f803f0a89c3b1e3166cfe33aad originally introduced
> the filtering of files by extension. For the QXL driver at least,
> there is a qxldd.dll file which is part of the driver, so that must be
> copied to the guest as well.
>
> This patch will cause 'WdfCoInstaller*.dll' files to be copied too.
> While I'm not sure if this is correct,
It is. They are coinstaller dlls and are mentioned in the corresponding
.i...
2015 Oct 28
0
Re: Fwd: [PATCH] v2v: virtio-win: include *.dll too
...7, 2015 at 02:08:42PM +0300, Roman Kagan wrote:
> > > > > On Tue, Oct 27, 2015 at 09:12:41AM +0000, Richard W.M. Jones wrote:
> > > > > > On Mon, Oct 26, 2015 at 09:00:03PM +0300, Roman Kagan wrote:
> > > > > > > Windows QXL drivers include also qxldd.dll which used to get
> > > > > > > filtered
> > > > > > > out and not copied over into the guest. As a result QXL driver
> > > > > > > failed
> > > > > > > to install due to a missing file.
> > > > >...
2015 Nov 17
0
[PATCH 3/3] v2v: windows: Use '*.inf' files to control how Windows drivers are installed.
...me win2k8_32;
- "drivers/i386/Win2008/netkvm.cat", Some win2k8_32;
"drivers/i386/Win2008/vioscsi.inf", Some win2k8_32;
"drivers/i386/Win7/viostor.inf", Some win7_32;
- "drivers/i386/Win7/viostor.sys", Some win7_32;
- "drivers/i386/Win7/qxldd.dll", None;
- "drivers/i386/Win7/qxl.sys", Some win7_32;
- "drivers/i386/Win7/vioscsi.cat", Some win7_32;
"drivers/i386/Win7/netkvm.inf", Some win7_32;
- "drivers/i386/Win7/netkvm.sys", Some win7_32;
- "drivers/i386/Win7/viostor.cat...
2015 Nov 17
8
[PATCH 0/3] v2v: windows: Use '*.inf' files to control how Windows drivers are installed.
https://github.com/rwmjones/libguestfs/tree/rewrite-virtio-copy-drivers
Instead of trying to split and parse elements from virtio-win paths,
use the '*.inf' files supplied with the drivers to control how Windows
drivers are installed.
The following emails best explain how this works:
https://www.redhat.com/archives/libguestfs/2015-October/msg00352.html
2015 Nov 05
6
[PATCH 0/4] Provide better fake virtio-* test data for virt-v2v.
Patch 1 moves the v2v/fake-virtio-win and v2v/fake-virt-tools
directories to the recently created test-data/ hierarchy. This is
just refactoring with no functional change at all.
Patches 2-4 then extend the available (fake) virtio-win drivers:
- Patch 2 adds all of the drivers from the virtio-win RPM.
- Patch 3 adds all of the drivers from the virtio-win ISO (which are
different from the
2017 Jun 27
3
[PATCH] libvirt: disallow non-local connections (RHBZ#1347830)
If the connection is not local, paths of disks will refer to the remote
host, which were mistakenly handled as local paths (in the best case
failing to open a non-existing disk, and in the worst case opening a
different disk!).
In case the disks are remote resources like ssh or ceph, nothing
guarantees that the hostname can be reached from the local machine, or
even that it is actually the same on
2017 Jul 07
4
[PATCH v6 0/3] gobject: Remove gtk-doc (RHBZ#1465665).
Hopefully this time ...