Displaying 4 results from an estimated 4 matches for "pnp_wait_ex".
Did you mean:
pnp_wait_exe
2016 Aug 23
0
Re: [PATCH 2/2] v2v:windows: prevent conflicts with PnP on firstboot
...windows.ml
> +++ b/v2v/convert_windows.ml
> @@ -43,6 +43,18 @@ let convert ~keep_serial_console (g : G.guestfs) inspect source rcaps =
> try Sys.getenv "VIRT_TOOLS_DATA_DIR"
> with Not_found -> Guestfs_config.datadir // "virt-tools" in
>
> + let pnp_wait_exe = virt_tools_data_dir // "pnp_wait.exe" in
> + let pnp_wait_exe =
> + try
> + let chan = open_in pnp_wait_exe in
> + close_in chan;
> + Some pnp_wait_exe
> + with
> + Sys_error msg ->
> + warning (f_"'%s' is missin...
2016 Sep 01
0
Re: [PATCH v2 2/2] v2v:windows: prevent conflicts with PnP on firstboot
...windows.ml
> +++ b/v2v/convert_windows.ml
> @@ -43,6 +43,18 @@ let convert ~keep_serial_console (g : G.guestfs) inspect source rcaps =
> try Sys.getenv "VIRT_TOOLS_DATA_DIR"
> with Not_found -> Guestfs_config.datadir // "virt-tools" in
>
> + let pnp_wait_exe = virt_tools_data_dir // "pnp_wait.exe" in
> + let pnp_wait_exe =
> + try
> + let chan = open_in pnp_wait_exe in
> + close_in chan;
> + Some pnp_wait_exe
> + with
> + Sys_error msg ->
> + warning (f_"'%s' is missin...
2016 Sep 01
3
[PATCH v2 0/2] v2v:windows: prevent conflicts with PnP on firstboot
Wait for driver installations fired by the PnP manager to complete
before running firstboot scripts.
The first patch is a minor refactoring to pave the way for the second
patch. The latter contains the bulk of the changes as well as the
description of the idea.
Roman Kagan (2):
v2v:windows: factor out getting CurrentControlSet
v2v:windows: prevent conflicts with PnP on firstboot
---
v1
2017 Feb 22
5
[PATCH 0/4] v2v: windows: Only try to install rhev-apt if the target is RHV (RHBZ#1161019).
The bug is:
https://bugzilla.redhat.com/show_bug.cgi?id=1161019
This makes a few other minor refactorings to the code.
Rich.