1 | ; $Id: VBoxDrv.inf 44528 2013-02-04 14:27:54Z vboxsync $
|
---|
2 | ;; @file
|
---|
3 | ; VirtualBox Support Driver - Windows Driver INF file.
|
---|
4 | ;
|
---|
5 |
|
---|
6 | ;
|
---|
7 | ; Copyright (C) 2006-2010 Oracle Corporation
|
---|
8 | ;
|
---|
9 | ; This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | ; available from http://www.virtualbox.org. This file is free software;
|
---|
11 | ; you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | ; General Public License (GPL) as published by the Free Software
|
---|
13 | ; Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | ; VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | ; hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | ;
|
---|
17 | ; The contents of this file may alternatively be used under the terms
|
---|
18 | ; of the Common Development and Distribution License Version 1.0
|
---|
19 | ; (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
20 | ; VirtualBox OSE distribution, in which case the provisions of the
|
---|
21 | ; CDDL are applicable instead of those of the GPL.
|
---|
22 | ;
|
---|
23 | ; You may elect to license modified versions of this file under the
|
---|
24 | ; terms and conditions of either the GPL or the CDDL or both.
|
---|
25 | ;
|
---|
26 |
|
---|
27 | [Version]
|
---|
28 | Signature="$Windows NT$"
|
---|
29 | Class=System
|
---|
30 | ClassGuid={ce4a90b5-1d8c-435d-b349-232ce55cb17f}
|
---|
31 | Provider=%ORACLE%
|
---|
32 | ;edit-DriverVer=08/26/2008,2.00.0000
|
---|
33 | DriverPackageType=KernelService
|
---|
34 | ;cat CatalogFile=VBoxDrv.cat
|
---|
35 |
|
---|
36 | [DestinationDirs]
|
---|
37 | DefaultDestDir = 12
|
---|
38 |
|
---|
39 | [DefaultInstall]
|
---|
40 | CopyFiles=VBoxDrv.CopyFiles
|
---|
41 |
|
---|
42 | [DefaultInstall.Services]
|
---|
43 | AddService=VBoxDrv,0x00000002,VBoxDrv_Service
|
---|
44 |
|
---|
45 | [Manufacturer]
|
---|
46 | ;x86 %ORACLE%=ORACLE
|
---|
47 | ;amd64 %ORACLE%=ORACLE, NTamd64
|
---|
48 |
|
---|
49 | [SourceDisksFiles]
|
---|
50 | VBoxDrv.sys=1
|
---|
51 |
|
---|
52 | [SourceDisksNames]
|
---|
53 | 1=%DISK_NAME%,
|
---|
54 |
|
---|
55 | [VBoxDrv.CopyFiles]
|
---|
56 | VBoxDrv.sys
|
---|
57 |
|
---|
58 | [VBoxDrv_Service]
|
---|
59 | DisplayName = %VBoxDrv.SVCDESC%
|
---|
60 | ServiceType = 1 ; SERVICE_KERNEL_DRIVER
|
---|
61 | ;StartType = 3 ; SERVICE_DEMAND_START
|
---|
62 | StartType = 1 ; autostart to fix Vista problem
|
---|
63 | ErrorControl = 1 ; SERVICE_ERROR_NORMAL
|
---|
64 | ServiceBinary = %12%\VBoxDrv.sys
|
---|
65 |
|
---|
66 | [Strings]
|
---|
67 | ORACLE = "Oracle Corporation"
|
---|
68 | VBoxDrv.SVCDESC = "VirtualBox Service"
|
---|
69 | VBoxDrv.DRVDESC = "VirtualBox Driver"
|
---|
70 | DISK_NAME = "VirtualBox Driver Installation Disk"
|
---|