search for: wdfcoinstal

Displaying 11 results from an estimated 11 matches for "wdfcoinstal".

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 the same (per architecture). Thanks: Vadim Rozenfeld, Tingting Zheng. --- v2v/windows_virtio.ml | 2 +- 1 file changed, 1...
2015 Oct 27
2
Re: [PATCH] v2v: virtio-win: include *.dll too
...gt; > - let extensions = ["cat"; "inf"; "pdb"; "sys"] in > > + let extensions = ["cat"; "dll"; "inf"; "pdb"; "sys"] in > > Actually no, this part is (may be) wrong. > > This causes WdfCoInstaller*.dll from the ISO to be copied in. It's > not clear to me whether these files are needed - I suspect not. Yes it is, see the corresponding *.inf where it's mentioned in the corresponding CopyFiles directive (and yes, I just verified that with that file missing the balloon driver ins...
2015 Oct 27
3
Re: [PATCH] v2v: virtio-win: include *.dll too
...quot;inf"; "pdb"; "sys"] in > > > > + let extensions = ["cat"; "dll"; "inf"; "pdb"; "sys"] in > > > > > > Actually no, this part is (may be) wrong. > > > > > > This causes WdfCoInstaller*.dll from the ISO to be copied in. It's > > > not clear to me whether these files are needed - I suspect not. > > > > Yes it is, see the corresponding *.inf where it's mentioned in the > > corresponding CopyFiles directive (and yes, I just verified that with...
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
1
Re: [PATCH] v2v: Copy *.dll files since they can be part of the driver (RHBZ#1311373).
...bec908f803f0a89c3b1e3166cfe33aad 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 > .inf and .cat files, so the driver wouldn't install without them. > > There are also other files that sometim...
2015 Oct 28
0
Re: Fwd: [PATCH] v2v: virtio-win: include *.dll too
...t; > > + let extensions = ["cat"; "dll"; "inf"; "pdb"; "sys"] in > > > > > > > > > > > > Actually no, this part is (may be) wrong. > > > > > > > > > > > > This causes WdfCoInstaller*.dll from the ISO to be copied in. It's > > > > > > not clear to me whether these files are needed - I suspect not. > > > > > Having WdfCoInstaller* is absolutely necessary for successful installation any of our WDF based drivers (serial, balloon, and rng)...
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 + v2v/test-v2v-in-place.sh | 1 +
2015 Oct 27
0
Re: [PATCH] v2v: virtio-win: include *.dll too
...hout specific extensions. *) > - let extensions = ["cat"; "inf"; "pdb"; "sys"] in > + let extensions = ["cat"; "dll"; "inf"; "pdb"; "sys"] in Actually no, this part is (may be) wrong. This causes WdfCoInstaller*.dll from the ISO to be copied in. It's not clear to me whether these files are needed - I suspect not. It also causes the tests to fail, although only when you have installed the optional ocaml oUnit2 package: ---------------------------------------------------------------------- Error:...
2015 Oct 27
0
Re: [PATCH] v2v: virtio-win: include *.dll too
...ons = ["cat"; "inf"; "pdb"; "sys"] in > > > + let extensions = ["cat"; "dll"; "inf"; "pdb"; "sys"] in > > > > Actually no, this part is (may be) wrong. > > > > This causes WdfCoInstaller*.dll from the ISO to be copied in. It's > > not clear to me whether these files are needed - I suspect not. > > Yes it is, see the corresponding *.inf where it's mentioned in the > corresponding CopyFiles directive (and yes, I just verified that with > that file missi...
2016 Mar 04
0
Re: [PATCH] v2v: Copy *.dll files since they can be part of the driver (RHBZ#1311373).
...ote: > 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 .inf and .cat files, so the driver wouldn't install without them. There are also other files that sometimes are and sometimes aren'...
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.