1 | ;
|
---|
2 | ; VBox host drivers - USB drivers - Win32 USB device
|
---|
3 | ;
|
---|
4 | ; Copyright (C) 2006-2007 Oracle Corporation
|
---|
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 |
|
---|
15 | [Version]
|
---|
16 | Signature="$Windows NT$"
|
---|
17 | Class=USB
|
---|
18 | ClassGUID={36FC9E60-C465-11CF-8056-444553540000}
|
---|
19 | provider=%ORACLE%
|
---|
20 | ;edit-DriverVer=08/26/2008,2.00.0000
|
---|
21 | ;cat CatalogFile=VBoxUSB.cat
|
---|
22 |
|
---|
23 | [SourceDisksNames]
|
---|
24 | 1=%Disk_Description%,,,
|
---|
25 |
|
---|
26 | [SourceDisksFiles]
|
---|
27 | VBoxUSB.sys = 1
|
---|
28 |
|
---|
29 | [Manufacturer]
|
---|
30 | ;x86 %MfgName%=ORACLE
|
---|
31 | ;amd64 %MfgName%=ORACLE, NTamd64
|
---|
32 |
|
---|
33 | ;x86 [ORACLE]
|
---|
34 | ;amd64 [ORACLE.NTamd64]
|
---|
35 | %USB\VID_80EE&PID_CAFE.DeviceDesc%=VBoxUSB.Dev, USB\VID_80EE&PID_CAFE
|
---|
36 |
|
---|
37 | [DestinationDirs]
|
---|
38 | VBoxUSB.Files.Ext = 10,System32\Drivers
|
---|
39 |
|
---|
40 | [VBoxUSB.Dev.NT]
|
---|
41 | CopyFiles=VBoxUSB.Files.Ext
|
---|
42 |
|
---|
43 | [VBoxUSB.Dev.NT.Services]
|
---|
44 | Addservice = VBoxUSB, 0x00000002, VBoxUSB.AddService
|
---|
45 |
|
---|
46 | [VBoxUSB.AddService]
|
---|
47 | DisplayName = %VBoxUSB.SvcDesc%
|
---|
48 | ServiceType = 1 ; SERVICE_KERNEL_DRIVER
|
---|
49 | StartType = 3 ; SERVICE_DEMAND_START
|
---|
50 | ErrorControl = 1 ; SERVICE_ERROR_NORMAL
|
---|
51 | ServiceBinary = %10%\System32\Drivers\VBoxUSB.sys
|
---|
52 | AddReg = VBoxUSB.AddReg
|
---|
53 | LoadOrderGroup = Base
|
---|
54 |
|
---|
55 | [VBoxUSB.AddReg]
|
---|
56 | HKR,,DevLoader,,*ntkern
|
---|
57 | HKR,,NTMPDriver,,VBoxUSB.sys
|
---|
58 |
|
---|
59 | [VBoxUSB.Files.Ext]
|
---|
60 | VBoxUSB.sys
|
---|
61 |
|
---|
62 | ;---------------------------------------------------------------;
|
---|
63 |
|
---|
64 | [Strings]
|
---|
65 | ORACLE="Oracle Corporation"
|
---|
66 | MfgName="Oracle Corporation"
|
---|
67 | Disk_Description="VBoxUSB Installation Disk"
|
---|
68 | USB\VID_80EE&PID_CAFE.DeviceDesc="VirtualBox USB"
|
---|
69 | VBoxUSB.SvcDesc="VirtualBox USB"
|
---|