Displaying 6 results from an estimated 6 matches for "inf_".
Did you mean:
inf
2016 Apr 05
0
[PATCH 4/7] v2v: extract reusable parts of viostor regedits
...abase g root arch current_cs driverdir =
(* Windows >= 8 doesn't use the CriticalDeviceDatabase. Instead
* one must add keys into the DriverDatabase.
*)
+ let driver = "viostor.sys" in
+ let driver_name = Filename.chop_extension driver in
- let viostor_inf =
+ let inf_full =
let arch =
match arch with
| "x86_64" -> "amd64"
@@ -210,145 +214,39 @@ and add_viostor_to_driver_database g root arch current_cs driverdir =
(* XXX I don't know what the significance of the c863.. string is. It
* may even be random....
2016 Apr 05
0
[PATCH 1/7] v2v: check next free oem%d.inf in /Windows/Inf
...iostor_to_driver_database g root arch current_cs driverdir =
(* Windows >= 8 doesn't use the CriticalDeviceDatabase. Instead
* one must add keys into the DriverDatabase.
*)
@@ -213,27 +213,7 @@ and add_viostor_to_driver_database g root arch current_cs =
sprintf "viostor.inf_%s_%s" arch "c86329aaeb0a7904" in
let scsi_adapter_guid = "{4d36e97b-e325-11ce-bfc1-08002be10318}" in
- (* There should be a key
- * HKLM\SYSTEM\DriverDatabase\DeviceIds\<scsi_adapter_guid>
- * We want to add:
- * "oem1.inf"=hex(0):
- * but...
2003 Nov 23
3
make check reg-tests-3
...0.04 0.08 -0.06 0.12 0.10 0.64
-93 -0.07 0.05 0.04 0.08 -0.06 0.12 0.10 -0.64
- cov.r cook.d hat
-8 1.71_* 0.04 0.39
-19 2.09_* 0.00 0.43
-28 1.86_* 0.00 0.36
-39 1.76_* 0.01 0.36
-42 0.13_* 0.05 0.06
-57 NaN Inf_* 1.00_*
-66 1.63_* 0.00 0.26
-80 1.92_* 0.01 0.40
-83 1.88_* 0.00 0.36
-87 1.60_* 0.00 0.25
-89 2.68_* 0.03 0.57_*
-93 2.68_* 0.03 0.57_*
+ dfb.1_ dfb.Wght dfb.Cyl4 dfb.Cyl5 dfb.Cyl6
+8 -1.60000e-01 0.00000e+00 -1.00000e-01 -7.00000e-02 -2.40000e...
2016 Apr 05
22
[PATCH 0/7] Add support for SUSE virtio windows drivers
Hi there,
SUSE ships Virtual Machine Driver Pack for the virtio windows drivers. Get v2v
and customize to discover them and use them if available.
Cédric Bosdonnat (7):
v2v: check next free oem%d.inf in /Windows/Inf
v2v: extract controller offset discovery as a function
customize: add support for pvvxsvc
v2v: extract reusable parts of viostor regedits
v2v: adapt the subkey in Enum
2016 Apr 05
0
[PATCH 7/7] v2v: add support for SUSE VMDP drivers
..._to_driver_database g root arch current_cs driverdir driver =
(* Windows >= 8 doesn't use the CriticalDeviceDatabase. Instead
* one must add keys into the DriverDatabase.
*)
- let driver = "viostor.sys" in
let driver_name = Filename.chop_extension driver in
let inf_full =
@@ -229,8 +242,12 @@ and add_viostor_to_driver_database g root arch current_cs driverdir =
let scsi_adapter_guid = "{4d36e97b-e325-11ce-bfc1-08002be10318}" in
- let driverdesc = "Red Hat VirtIO SCSI controller" in
- let provider = "Red Hat, Inc." in
+ l...
2016 Apr 06
8
[PATCH 0/4] v2v: simplify Windows registry patching
The way we patch the Windows registry in order to allow it to boot off a
virtio-blk drive was initially conceived by comparing the state with
virtio-blk driver properly installed, to that without.
However, we don't want to replicate the Windows PnP system; rather we
need to apply just enough edits to make the system boot, and then let
the Windows PnP manager figure out the rest.
This series