1 | ;
|
---|
2 | ; VirtualBox Video miniport driver
|
---|
3 | ;
|
---|
4 | ; Copyright (C) 2006-2007 Sun Microsystems, Inc.
|
---|
5 | ;
|
---|
6 | ; This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
7 | ; available from http://www.virtualbox.org. This file is free software;
|
---|
8 | ; you can redistribute it and/or modify it under the terms of the GNU
|
---|
9 | ; General Public License (GPL) as published by the Free Software
|
---|
10 | ; Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
11 | ; VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
12 | ; hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
13 | ;
|
---|
14 | ; Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
15 | ; Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
16 | ; additional information or have any questions.
|
---|
17 | ;
|
---|
18 |
|
---|
19 | [Version]
|
---|
20 | Signature="$WINDOWS NT$"
|
---|
21 | Provider=%SUN%
|
---|
22 | ClassGUID={4D36E968-E325-11CE-BFC1-08002BE10318}
|
---|
23 | Class=Display
|
---|
24 | ;cat DriverVer = 05/17/2007,1.04.0000
|
---|
25 | ;cat CatalogFile = VBoxVideo.cat
|
---|
26 |
|
---|
27 | [DestinationDirs]
|
---|
28 | DefaultDestDir=11
|
---|
29 | VBoxVideo.Miniport = 12 ; drivers
|
---|
30 | VBoxVideo.Display = 11 ; system32
|
---|
31 |
|
---|
32 | [Manufacturer]
|
---|
33 | ;x86 %SUN%=SUN
|
---|
34 | ;amd64 %SUN%=SUN, NTamd64
|
---|
35 |
|
---|
36 | [Model]
|
---|
37 | %VBoxVideo.SvcDesc% = VBoxVideo, PCI\VEN_80EE&DEV_BEEF
|
---|
38 |
|
---|
39 | [VBoxVideo]
|
---|
40 | CopyFiles=VBoxVideo.Miniport, VBoxVideo.Display
|
---|
41 |
|
---|
42 | [VBoxVideo.Miniport]
|
---|
43 | VBoxVideo.sys
|
---|
44 |
|
---|
45 | [VBoxVideo.Display]
|
---|
46 | VBoxDisp.dll
|
---|
47 |
|
---|
48 | [VBoxVideo.Services]
|
---|
49 | AddService=vboxvideo, 0x00000002, vboxvideo_Service_Inst, vboxvideo_EventLog_Inst
|
---|
50 |
|
---|
51 | [vboxvideo_Service_Inst]
|
---|
52 | ServiceType=1 ; SERVICE_KERNEL_DRIVER
|
---|
53 | StartType=1 ; SERVICE_SYSTEM_START
|
---|
54 | ErrorControl=0 ; SERVICE_ERROR_IGNORE
|
---|
55 | LoadOrderGroup=Video
|
---|
56 | ServiceBinary=%12%\VBoxVideo.sys
|
---|
57 |
|
---|
58 | [vboxvideo_EventLog_Inst]
|
---|
59 | AddReg = vboxvideo_EventLog_AddReg
|
---|
60 |
|
---|
61 | [vboxvideo_EventLog_AddReg]
|
---|
62 | HKR,,EventMessageFile,0x00020000,"%SystemRoot%\System32\IoLogMsg.dll;%SystemRoot%\System32\drivers\VBoxVideo.sys"
|
---|
63 | HKR,,TypesSupported,0x00010001,7
|
---|
64 |
|
---|
65 | [VBoxVideo.SoftwareSettings]
|
---|
66 | AddReg = vboxvideo_SoftwareDeviceSettings
|
---|
67 |
|
---|
68 | [vboxvideo_SoftwareDeviceSettings]
|
---|
69 | HKR,, InstalledDisplayDrivers, %REG_MULTI_SZ%, VBoxDisp
|
---|
70 | ; Set 'Full' hardware acceleration up. On W2003 the level is by default None=5, leading to software mouse cursor
|
---|
71 | HKR,, Acceleration.Level, %REG_DWORD%, 0
|
---|
72 | HKR,, VgaCompatible, %REG_DWORD%, 0
|
---|
73 |
|
---|
74 | [VBoxVideo.OpenGLSoftwareSettings]
|
---|
75 |
|
---|
76 | [SourceDisksNames]
|
---|
77 | 1 = %VBoxVideo.Disk%,,,""
|
---|
78 | 2 = %VBoxVideo.Disk%,,,""
|
---|
79 |
|
---|
80 | [SourceDisksFiles]
|
---|
81 | VBoxVideo.sys = 1
|
---|
82 | VBoxDisp.dll = 2
|
---|
83 |
|
---|
84 | [Strings]
|
---|
85 | REG_SZ = 0x00000000
|
---|
86 | REG_MULTI_SZ = 0x00010000
|
---|
87 | REG_EXPAND_SZ = 0x00020000
|
---|
88 | REG_BINARY = 0x00000001
|
---|
89 | REG_DWORD = 0x00010001
|
---|
90 |
|
---|
91 | SUN = "Sun Microsystems, Inc."
|
---|
92 | VBoxVideo.Disk = "VirtualBox Video Driver Disk"
|
---|
93 | VBoxVideo.SvcDesc = "VirtualBox Graphics Adapter"
|
---|