Displaying 14 results from an estimated 14 matches for "pnp_wait".
Did you mean:
no_wait
2023 Mar 09
1
[V2V PATCH v2 1/1] convert_windows: add firstboot script to install drivers with pnputil
...b/convert/convert_windows.ml
index 6bc2343b..79050c66 100644
--- a/convert/convert_windows.ml
+++ b/convert/convert_windows.ml
@@ -295,9 +295,11 @@ let convert (g : G.guestfs) _ inspect i_firmware block_driver _ static_ips =
| Virt -> Virt
and configure_firstboot () =
- (* Note that pnp_wait.exe must be the first firstboot script as it
- * suppresses PnP for all following scripts.
+ (* Run the firstboot script with pnputil.exe before the one with
+ * pnp_wait.exe as the latter suppresses PnP for all following scripts.
*)
+ configure_pnputil_install ();
+
let to...
2023 Mar 08
1
[V2V PATCH 1/1] convert_windows: add firstboot script to install drivers with pnputil
...b/convert/convert_windows.ml
index 6bc2343b..e15a5e62 100644
--- a/convert/convert_windows.ml
+++ b/convert/convert_windows.ml
@@ -295,9 +295,11 @@ let convert (g : G.guestfs) _ inspect i_firmware block_driver _ static_ips =
| Virt -> Virt
and configure_firstboot () =
- (* Note that pnp_wait.exe must be the first firstboot script as it
- * suppresses PnP for all following scripts.
+ (* Run the firstboot script with pnputil.exe before the one with
+ * pnp_wait.exe as the latter suppresses PnP for all following scripts.
*)
+ configure_pnputil_install ();
+
let to...
2023 Mar 09
2
[V2V PATCH 1/1] convert_windows: add firstboot script to install drivers with pnputil
...indows.ml
> >> +++ b/convert/convert_windows.ml
> >> @@ -295,9 +295,11 @@ let convert (g : G.guestfs) _ inspect i_firmware block_driver _ static_ips =
> >> | Virt -> Virt
> >>
> >> and configure_firstboot () =
> >> - (* Note that pnp_wait.exe must be the first firstboot script as it
> >> - * suppresses PnP for all following scripts.
> >> + (* Run the firstboot script with pnputil.exe before the one with
> >> + * pnp_wait.exe as the latter suppresses PnP for all following scripts.
> >>...
2023 Mar 13
1
[V2V PATCH 1/1] convert_windows: add firstboot script to install drivers with pnputil
...>> +++ b/convert/convert_windows.ml
>>>> @@ -295,9 +295,11 @@ let convert (g : G.guestfs) _ inspect i_firmware block_driver _ static_ips =
>>>> | Virt -> Virt
>>>>
>>>> and configure_firstboot () =
>>>> - (* Note that pnp_wait.exe must be the first firstboot script as it
>>>> - * suppresses PnP for all following scripts.
>>>> + (* Run the firstboot script with pnputil.exe before the one with
>>>> + * pnp_wait.exe as the latter suppresses PnP for all following scripts.
>&g...
2023 Mar 08
1
[V2V PATCH 1/1] convert_windows: add firstboot script to install drivers with pnputil
...6bc2343b..e15a5e62 100644
> --- a/convert/convert_windows.ml
> +++ b/convert/convert_windows.ml
> @@ -295,9 +295,11 @@ let convert (g : G.guestfs) _ inspect i_firmware block_driver _ static_ips =
> | Virt -> Virt
>
> and configure_firstboot () =
> - (* Note that pnp_wait.exe must be the first firstboot script as it
> - * suppresses PnP for all following scripts.
> + (* Run the firstboot script with pnputil.exe before the one with
> + * pnp_wait.exe as the latter suppresses PnP for all following scripts.
> *)
> + configure_pnputil_...
2023 Mar 13
1
[V2V PATCH 1/1] convert_windows: add firstboot script to install drivers with pnputil
...rt/convert_windows.ml
>>>>> @@ -295,9 +295,11 @@ let convert (g : G.guestfs) _ inspect i_firmware block_driver _ static_ips =
>>>>> | Virt -> Virt
>>>>>
>>>>> and configure_firstboot () =
>>>>> - (* Note that pnp_wait.exe must be the first firstboot script as it
>>>>> - * suppresses PnP for all following scripts.
>>>>> + (* Run the firstboot script with pnputil.exe before the one with
>>>>> + * pnp_wait.exe as the latter suppresses PnP for all following scr...
2023 Mar 09
1
[V2V PATCH 1/1] convert_windows: add firstboot script to install drivers with pnputil
...t;> --- a/convert/convert_windows.ml
>> +++ b/convert/convert_windows.ml
>> @@ -295,9 +295,11 @@ let convert (g : G.guestfs) _ inspect i_firmware block_driver _ static_ips =
>> | Virt -> Virt
>>
>> and configure_firstboot () =
>> - (* Note that pnp_wait.exe must be the first firstboot script as it
>> - * suppresses PnP for all following scripts.
>> + (* Run the firstboot script with pnputil.exe before the one with
>> + * pnp_wait.exe as the latter suppresses PnP for all following scripts.
>> *)
>> +...
2023 Mar 09
1
[V2V PATCH v2 0/1] convert_windows: add firstboot script to install drivers with pnputil
v1 discussion:
https://listman.redhat.com/archives/libguestfs/2023-March/031001.html
v1 -> v2:
* Omit redirecting output to a separate log with "%~dpn0.log".
Andrey Drobyshev (1):
convert_windows: add firstboot script to install drivers with pnputil
convert/convert_windows.ml | 16 ++++++++++++++--
1 file changed, 14 insertions(+), 2 deletions(-)
--
2.31.1
2023 Mar 08
1
[V2V PATCH 0/1] convert_windows: add firstboot script to install drivers with pnputil
I've been experiencing problem with the drivers not always being installed.
This patch merely implements the solution offered by Richard in the
commit 73e009c04 ("v2v: windows: Document use of pnputil to install
drivers."). The solution wasn't implemented back then, but rather added
merely as a comment. Thus I wonder is there some issues which it may
cause?
The most obvious
2016 Aug 23
0
Re: [PATCH 2/2] v2v:windows: prevent conflicts with PnP on firstboot
...e firstboot scripts. This may result
> in conflicts (because a firstboot script may want to install or
> uninstall a driver, etc.) and eventually in the system left in
> inconsistent state.
>
> In order to prevent it, add another firstboot script which calls a
> special utility, pnp_wait, whose sole purpose is to wait until all
> PnP-related activities are finished. (It does so via a WinAPI call
> which isn't available from a script so it has to be a compiled .exe.
> The source code for it can be found in the corresponding directory in
> https://github.com/rwmjones...
2016 Sep 01
0
Re: [PATCH v2 2/2] v2v:windows: prevent conflicts with PnP on firstboot
...e firstboot scripts. This may result
> in conflicts (because a firstboot script may want to install or
> uninstall a driver, etc.) and eventually in the system left in
> inconsistent state.
>
> In order to prevent it, add another firstboot script which calls a
> special utility, pnp_wait, whose sole purpose is to wait until all
> PnP-related activities are finished. (It does so via a WinAPI call
> which isn't available from a script so it has to be a compiled .exe.
> The source code for it can be found in the corresponding directory in
> https://github.com/rwmjones...
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
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 28
0
ANNOUNCE: libguestfs 1.36 released
...virt-v2v and virt-p2v
Conversions of Debian (6+) and Ubuntu (10.04+) guests are now supported
(Tomáš Golembiovský, Pino Toscano).
Conversions from SUSE Xen hypervisor have now been tested (Cédric
Bosdonnat).
Windows conversions may now install a program "pnp_wait.exe" which
prevents conflicts between the Windows Plug-and-Play Manager and our
own scripts that install virtio device drivers. Enabling this requires
the "pnp_wait.exe" program to be built separately (Roman Kagan).
OVA files exported from AWS can now be...