search for: criticaldevicedatabase

Displaying 20 results from an estimated 20 matches for "criticaldevicedatabase".

2014 Dec 02
1
[PATCH NOT TO BE APPLIED] v2v: windows: Make registry changes to all ControlSets, not
[Partly using the mailing list as a backup again ...] This commit changes virt-v2v to make registry changes to all ControlSets, not just the CurrentControlSet. Not sure what difference if any this would make. Rich.
2010 Oct 19
1
[PATCH] Fix Windows conversion when ControlSet001 isn't the CurrentControlSet
...$current_cs = sprintf("ControlSet%03i", $h->value_dword($current_cs)); + # Make the changes. - my $regedits = ' + my $regedits = <<REGEDITS; ; Edits to be made to a Windows guest to have ; it boot from viostor. -[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\CriticalDeviceDatabase\pci#ven_1af4&dev_1001&subsys_00000000] +[HKEY_LOCAL_MACHINE\\SYSTEM\\$current_cs\\Control\\CriticalDeviceDatabase\\pci#ven_1af4&dev_1001&subsys_00000000] "Service"="viostor" "ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}" -[HKEY_LOCAL...
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
2016 Apr 05
0
[PATCH 4/7] v2v: extract reusable parts of viostor regedits
...database g root current_cs = * NB: All these edits are in the HKLM\SYSTEM hive. No other * hive may be modified here. *) + let driver = "viostor.sys" in + let driver_name = Filename.chop_extension driver in let regedits = [ [ current_cs; "Control"; "CriticalDeviceDatabase"; "pci#ven_1af4&dev_1001&subsys_00000000" ], - [ "Service", REG_SZ "viostor"; + [ "Service", REG_SZ driver_name; "ClassGUID", REG_SZ "{4D36E97B-E325-11CE-BFC1-08002BE10318}" ]; [ current_cs; "C...
2010 May 06
1
[PATCH v2v] Pre-convert Windows guests.
...:Hivex->open ($tmpdir . "/system", write => 1) + or die "open system hive: $!"; + + # Make the changes. + my $regedits_w2k3 = ' +; Edits to be made to a Windows 2003 guest to have +; it boot from viostor. + +[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\CriticalDeviceDatabase\pci#ven_1af4&dev_1001&subsys_00000000] +"Service"="viostor" +"ClassGUID"="{4D36E97B-E325-11CE-BFC1-08002BE10318}" + +[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\CriticalDeviceDatabase\pci#ven_1af4&dev_1001&subsys_00020000] +"Service&...
2014 Jun 13
4
Offline virtio installation on Windows 2012R2
Hello all, I'm trying to automate the installation of the VirtIO drivers on a Windows image in the same way it is done in [1] and [2]. Registering the viostor service and adding the driver under the HKEY_LOCALE_MACHINE\SYSTEM\CurrentControlSet\CriticalDeviceDatabase registry key, makes an Windows 2008R2 image boot if the hd is under the virtio interface, but I cannot make this work for Windows 2012R2. As far as I've seen, the CDDB registry keys are deprecated in newer Windows and creating them back does not seem to make this work. Has anybody had any luck...
2015 Jul 12
1
Re: Migrate Win2k3 to KVM
...) > OK. > - - Now, start registry editor: chntpw -e sam system security software > "system security software" is parameters? > The following commands are to type in chntpw prompt: > - - hive 1 (to move to system) > - - cd ControlSet001 > - - cd Control > - - cd CriticalDeviceDatabase > - - Check you have the following keys: primary_ide_channel, > secondary_ide_channel, pci#ven_8086&dev_7010, pci#ven_8086&dev_7111 > keys. Some will be missing (otherwise, you'd boot ;-)). > I think I'll find SATA something, because the original image was taken from a S...
2015 Jul 11
8
Re: Migrate Win2k3 to KVM
Hi, The error line is: *** STOP: 0x0000007B (0xF789AA94, 0xC0000034, 0x00000000, 0x00000000) Nothing more! (Of course there are some inrelevant text line about chkdsk, etc.) > Basically, what's required is the "STOP:" line + the image where it > fails (so, the line below). Image being likely to be NTOSKRNL.EXE > Nothing about NTOSKRNL.EXE on the blue screen! > >
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 5/7] v2v: adapt the subkey in Enum registry to windows version
...ilename.chop_extension driver in + (* Windows 2k3 uses '&0&', windows 2k8 '&2&' *) + let subkey = + if (major == 5) then "3&13c0b0c5&0" else "3&13c0b0c5&2" in let regedits = [ [ current_cs; "Control"; "CriticalDeviceDatabase"; "pci#ven_1af4&dev_1001&subsys_00000000" ], [ "Service", REG_SZ driver_name; @@ -190,7 +193,7 @@ and add_viostor_to_critical_device_database g root current_cs = [ "5", REG_DWORD 0x1_l ]; [ current_cs; "Services"; driver_na...
2015 Jul 13
0
Re: Migrate Win2k3 to KVM
On 07/13/2015 03:25 PM, Ruzsinszky Attila wrote: > - - cd ControlSet001 >> - - cd Control >> - - cd CriticalDeviceDatabase >> - - Check you have the following keys: primary_ide_channel, >> secondary_ide_channel, pci#ven_8086&dev_7010, pci#ven_8086&dev_7111 >> keys. Some will be missing (otherwise, you'd boot ;-)). >> > Here is my keys: > ... > <pci#cc_0600> > <...
2009 Oct 27
6
Replicating a live server on a domU
Hi, Has anybody ever stumbled upon the need to replicate a live and in production server to a virtual machine? I''m trying to virtualize a bunch of servers but I can''t figure out how can I mirror the file system. I do not want to start from scratch with them. The whole idea is to transfer them to the virtual side as they currently are. Any advice is welcome. Thank you.
2016 Apr 05
0
[PATCH 1/7] v2v: check next free oem%d.inf in /Windows/Inf
...nt_cs @@ -195,7 +195,7 @@ and add_viostor_to_critical_device_database g root current_cs = reg_import g root regedits -and add_viostor_to_driver_database g root arch current_cs = +and add_viostor_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...
2015 Jul 11
0
Re: Migrate Win2k3 to KVM
...t your disk on Linux - - Move to Windows/System32/config (beware the case!) - - Now, start registry editor: chntpw -e sam system security software (beware the case, again!) The following commands are to type in chntpw prompt: - - hive 1 (to move to system) - - cd ControlSet001 - - cd Control - - cd CriticalDeviceDatabase - - Check you have the following keys: primary_ide_channel, secondary_ide_channel, pci#ven_8086&dev_7010, pci#ven_8086&dev_7111 keys. Some will be missing (otherwise, you'd boot ;-)). - - Add the missing ones. For example: 'nk pci#ven_8086&dev_7111' followed by: 'cd pci#...
2009 Dec 31
4
Bluescreen with Latest GPLPV on Windows Server 2008 R2 on XEN3.4.1
Hi all, my system is a XEN3.4.1 Dom0 Host System with a HVM Windows 2008 R2 machine. After installation of the GPLPV driver ("gplpv_fre_wnet_AMD64_0.10.0.130.msi"), and an Reboot the Windows Server 2008 R2 comes up and ends in a bluescreen, and immediately restarts. Testsigning is ON. What else can be done, or better what needs to be checked? Is there somebody who is facing the same
2016 Apr 05
0
[PATCH 7/7] v2v: add support for SUSE VMDP drivers
...0 @@ and add_viostor_to_critical_device_database g root current_cs major = reg_import g root regedits -and add_viostor_to_driver_database g root arch current_cs driverdir = +and add_viostor_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_gu...
2016 Oct 14
0
Wine release 1.9.21
...winebus.sys: Implement IOCTL_HID_GET_REPORT_DESCRIPTOR for hidraw. winehid.sys: Add HID minidriver. winehid.sys: Register as a HID minidriver. include: Define IoSkipCurrentIrpStackLocation. winehid.sys: Implement handing internal ioctls. wine.inf: Add WineHID to the CriticalDeviceDatabase. winebus.sys: Implement IOCTL_HID_GET_STRING for hidraw. Aurimas Fišeras (2): po: Update Lithuanian translation. po: Update Lithuanian translation. Austin English (1): subst: Add stub program. Carlo Bramini (1): winefile: Use StrFormatByteSizeW. Dmitry Timoshkov (1...
2017 Feb 18
11
[PATCH 0/8] Miscellaneous cleanups to Windows registry code.
A very miscellaneous set of cleanups to how we handle the Windows registry in virt-v2v, firstboot, and inspection code. This should all be straightforward non-controversial refactoring. Some highlights: - Add a new mllib Registry module containing various utility functions that are currently scattered all around. - Only compute the software/system hive paths once during inspection, and
2019 Jun 10
0
Wine release 4.10
...for IBasicAudio. strmbase: Get rid of IBasicAudio implementation. strmbase: Get rid of base IDispatch implementation. winehid.inf: Add new INF file and copy it to the INF directory. ntoskrnl.exe: Use INF files to locate function drivers. wine.inf: Remove no longer used CriticalDeviceDatabase entries. wine.inf: Remove registration for the winehid service. Zhiyi Zhang (8): gdi32/tests: Add D3DKMTCheckOcclusion tests. gdi32: Implement D3DKMTOpenAdapterFromGdiDisplayName. gdi32: Implement D3DKMTCloseAdapter. gdi32: Implement D3DKMTCreateDevice. gdi32: I...
2018 Mar 02
0
Wine release 3.3
...winebus.sys: Support adding and removing SDL devices. winebus.sys: Build SDL device report. winebus.sys: Process SDL device reports. winebus.sys: Map SDL game controllers if requested. winebus.sys: Implement SDL Haptic for controller vibration. winebus.sys: Add SDL to CriticalDeviceDatabase. winebus.sys: Do not depend on USB devices. Aurimas Fišeras (1): po: Update Lithuanian translation. Dmitry Timoshkov (10): iphlpapi: Also check the IP address family before treating it as an IPv6 one. adsldp: Add initial tests for ADSystemInfo. secur32/tests: Make Ge...