From f3e17583dd4fcdcb88b7774ba0a3892e2064bd89 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Herv=C3=A9=20Poussineau?= Date: Fri, 18 Nov 2005 18:48:14 +0000 Subject: [PATCH] Fix installation of VMware display driver svn path=/trunk/; revision=19326 --- reactos/bootdata/hivesys.inf | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/reactos/bootdata/hivesys.inf b/reactos/bootdata/hivesys.inf index 7e559f6b109..090e2348bf6 100644 --- a/reactos/bootdata/hivesys.inf +++ b/reactos/bootdata/hivesys.inf @@ -631,6 +631,18 @@ HKLM,"SYSTEM\CurrentControlSet\Enum\Root\*PNP0A03\0000\LogConf","BasicConfigVect 01,00,00,00,01,00,01,00,01,00,00,00, \ 00,06,00,00,00,00,00,00,01,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 +; We need the PCI bus to be installed at 3rd boot to enumerate display cards and to +; not have the "CsrServerInitialization: failed to initialize video (Status=c0000001)" +; error when a custom driver (as the VMware one) is installed. At the moment, +; StartServiceW is not implemented, so PlugPlay service can't start during +; second stage setup. => We have to code PCI bus parameters it in registry... +HKLM,"SYSTEM\CurrentControlSet\Enum\Root\*PNP0A03\0000","Service",0x00000000,"pci" +HKLM,"SYSTEM\CurrentControlSet\Services\PCI","ErrorControl",0x00010001,0x00000003 +HKLM,"SYSTEM\CurrentControlSet\Services\PCI","Group",0x00000000,"Boot Bus Extender" +HKLM,"SYSTEM\CurrentControlSet\Services\PCI","ImagePath",0x00020000,"system32\drivers\pci.sys" +HKLM,"SYSTEM\CurrentControlSet\Services\PCI","Start",0x00010001,0x00000000 +HKLM,"SYSTEM\CurrentControlSet\Services\PCI","Type",0x00010001,0x00000001 + ; ACPI bus HKLM,"SYSTEM\CurrentControlSet\Enum\Root\*PNP0C08\0000","HardwareID",0x00010000,"*PNP0C08" HKLM,"SYSTEM\CurrentControlSet\Enum\Root\*PNP0C08\0000","DeviceDesc",0x00000000,"ACPI bus" -- 2.17.1