Displaying 9 results from an estimated 9 matches for "pnp_wait_path".
2016 Aug 23
0
Re: [PATCH 2/2] v2v:windows: prevent conflicts with PnP on firstboot
...-> sprintf "\
> +reg delete \"%s\" /v %s /f" strkey name
> +
> + and wait_pnp () =
> + (* prevent destructive interactions of firstboot with PnP *)
> + match pnp_wait_exe with
> + | None -> ()
> + | Some pnp_wait_exe ->
> + let pnp_wait_path = [""; "Program Files"; "Guestfs"; "Firstboot";
> + "pnp_wait.exe"] in
> + (* suppress "New Hardware Wizard" until PnP settles (see
> + * https://support.microsoft.com/en-us/kb/938596) and rest...
2016 Sep 01
0
Re: [PATCH v2 2/2] v2v:windows: prevent conflicts with PnP on firstboot
...-> sprintf "\
> +reg delete \"%s\" /v %s /f" strkey name
> +
> + and wait_pnp () =
> + (* prevent destructive interactions of firstboot with PnP *)
> + match pnp_wait_exe with
> + | None -> ()
> + | Some pnp_wait_exe ->
> + let pnp_wait_path = [""; "Program Files"; "Guestfs"; "Firstboot";
> + "pnp_wait.exe"] in
> + (* suppress "New Hardware Wizard" until PnP settles (see
> + * https://support.microsoft.com/en-us/kb/938596) and rest...
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
2018 May 18
2
[PATCH] RFC: v2v: use RHV Setup Tools ISO if available
...if copy_rhev_apt rhev_apt then
+ configure_rhev_apt ()
);
(* Install VMDP unconditionally, if available, but don't
@@ -330,12 +337,46 @@ echo Wait for PnP to complete
(* add_firstboot_script has created the path already. *)
g#upload tool_path (g#case_sensitive_path pnp_wait_path)
- and configure_rhev_apt tool_path =
+ and copy_rhev_apt tool_location =
(* Configure RHEV-APT (the RHV guest agent). However if it doesn't
* exist just warn about it and continue.
*)
- g#upload tool_path "/rhev-apt.exe"; (* XXX *)
+ let ret = ref false in...
2023 Mar 16
3
[V2V PATCH v4 0/2] convert_windows: add firstboot script to install drivers with pnputil
While messing around this script, I added one more tiny patch making
wait-pnp log its output into the common log.txt file, as suggested by
Richard here:
https://listman.redhat.com/archives/libguestfs/2023-March/031023.html
Discussion on v3:
https://listman.redhat.com/archives/libguestfs/2023-March/031070.html
v3 -> v4:
* Remove unneeded line break from the script;
* Add another small
2018 May 23
0
Re: [PATCH] RFC: v2v: use RHV Setup Tools ISO if available
...; + configure_rhev_apt ()
> );
>
> (* Install VMDP unconditionally, if available, but don't
> @@ -330,12 +337,46 @@ echo Wait for PnP to complete
> (* add_firstboot_script has created the path already. *)
> g#upload tool_path (g#case_sensitive_path pnp_wait_path)
>
> - and configure_rhev_apt tool_path =
> + and copy_rhev_apt tool_location =
> (* Configure RHEV-APT (the RHV guest agent). However if it doesn't
> * exist just warn about it and continue.
> *)
> - g#upload tool_path "/rhev-apt.exe"; (*...
2016 Dec 01
2
[PATCH] v2v: Rename RHEV to RHV throughout.
...loc
| `VDSM ->
let os =
diff --git a/v2v/convert_windows.ml b/v2v/convert_windows.ml
index 25acdcc..f8337a0 100644
--- a/v2v/convert_windows.ml
+++ b/v2v/convert_windows.ml
@@ -319,7 +319,7 @@ echo Wait for PnP to complete
(String.concat "/" pnp_wait_path))
and configure_rhev_apt tool_path =
- (* Configure RHEV-APT (the RHEV guest agent). However if it doesn't
+ (* Configure RHEV-APT (the RHV guest agent). However if it doesn't
* exist just warn about it and continue.
*)
g#upload tool_path "/rhev-apt.exe&qu...
2016 Dec 07
0
[PATCH v2] v2v: Rename RHEV to RHV throughout.
...loc
| `VDSM ->
let os =
diff --git a/v2v/convert_windows.ml b/v2v/convert_windows.ml
index 25acdcc..f8337a0 100644
--- a/v2v/convert_windows.ml
+++ b/v2v/convert_windows.ml
@@ -319,7 +319,7 @@ echo Wait for PnP to complete
(String.concat "/" pnp_wait_path))
and configure_rhev_apt tool_path =
- (* Configure RHEV-APT (the RHEV guest agent). However if it doesn't
+ (* Configure RHEV-APT (the RHV guest agent). However if it doesn't
* exist just warn about it and continue.
*)
g#upload tool_path "/rhev-apt.exe&qu...
2016 Dec 07
2
[PATCH v2] v2v: Rename RHEV to RHV throughout.
v2:
- Fix virt-p2v messages too.
Rich.