1 | ; $Id: VBoxNetAdp6.inf 66963 2017-05-19 08:34:56Z vboxsync $
|
---|
2 | ; @file
|
---|
3 | ; VBoxNetAdp6.inf - VirtualBox NDIS6 Miniport Driver inf file
|
---|
4 | ;
|
---|
5 | ; Note: We use the same component id as the old NetAdp implementation ?
|
---|
6 | ;
|
---|
7 | ;
|
---|
8 | ; Copyright (C) 2014-2016 Oracle Corporation
|
---|
9 | ;
|
---|
10 | ; This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
11 | ; available from http://www.virtualbox.org. This file is free software;
|
---|
12 | ; you can redistribute it and/or modify it under the terms of the GNU
|
---|
13 | ; General Public License (GPL) as published by the Free Software
|
---|
14 | ; Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
15 | ; VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
16 | ; hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
17 | ;
|
---|
18 |
|
---|
19 | [Version]
|
---|
20 | Signature = "$Windows NT$"
|
---|
21 | ;cat CatalogFile = VBoxNetAdp6.cat
|
---|
22 | Class = Net
|
---|
23 | ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
---|
24 | Provider = %Provider%
|
---|
25 | ;edit-DriverVer=10/23/2014,1.0.1.0
|
---|
26 |
|
---|
27 |
|
---|
28 | [Manufacturer]
|
---|
29 | %Provider% = VBox,NTx86,NTamd64
|
---|
30 |
|
---|
31 | [ControlFlags]
|
---|
32 |
|
---|
33 | [VBox]
|
---|
34 | %VBoxNetAdp6_Desc% = VBoxNetAdp6.ndi, sun_VBoxNetAdp
|
---|
35 |
|
---|
36 | [VBox.NTx86]
|
---|
37 | %VBoxNetAdp6_Desc% = VBoxNetAdp6.ndi, sun_VBoxNetAdp
|
---|
38 |
|
---|
39 | [VBox.NTamd64]
|
---|
40 | %VBoxNetAdp6_Desc% = VBoxNetAdp6.ndi, sun_VBoxNetAdp
|
---|
41 |
|
---|
42 | [VBoxNetAdp6.ndi]
|
---|
43 | AddReg = VBoxNetAdp6.ndi.AddReg
|
---|
44 | Characteristics = 0x1 ; NCF_VIRTUAL
|
---|
45 | *IfType = 0x6 ; IF_TYPE_ETHERNET_CSMACD
|
---|
46 | *MediaType = 0x0 ; NdisMedium802_3
|
---|
47 | *PhysicalMediaType = 14 ; NdisPhysicalMedium802_3
|
---|
48 | CopyFiles = VBoxNetAdp6.Files.Sys
|
---|
49 |
|
---|
50 | [VBoxNetAdp6.ndi.Services]
|
---|
51 | AddService = VBoxNetAdp, 2, VBoxNetAdp6.AddService
|
---|
52 |
|
---|
53 | [VBoxNetAdp6.AddService]
|
---|
54 | DisplayName = %VBoxNetAdp6Service_Desc%
|
---|
55 | ServiceType = 1 ;SERVICE_KERNEL_DRIVER
|
---|
56 | StartType = 3 ;SERVICE_DEMAND_START
|
---|
57 | ErrorControl = 1 ;SERVICE_ERROR_NORMAL
|
---|
58 | ServiceBinary = %12%\VBoxNetAdp6.sys
|
---|
59 | LoadOrderGroup = NDIS
|
---|
60 |
|
---|
61 | [SourceDisksNames]
|
---|
62 | 1=%DiskDescription%,"",,
|
---|
63 |
|
---|
64 | [SourceDisksFiles]
|
---|
65 | VBoxNetAdp6.sys=1
|
---|
66 |
|
---|
67 | [DestinationDirs]
|
---|
68 | DefaultDestDir = 12
|
---|
69 | VBoxNetAdp6.Files.Sys = 12 ; %windir%\System32\drivers
|
---|
70 |
|
---|
71 | [VBoxNetAdp6.Files.Sys]
|
---|
72 | VBoxNetAdp6.sys,,,2
|
---|
73 |
|
---|
74 | [VBoxNetAdp6.ndi.AddReg]
|
---|
75 | HKR, , *NdisDeviceType, 0x00010001, 1 ; NDIS_DEVICE_TYPE_ENDPOINT
|
---|
76 | HKR, , BusNumber, 0, "0"
|
---|
77 | HKR, Ndi, Service, 0, VBoxNetAdp
|
---|
78 | HKR, Ndi, HelpText, , %VBoxNetAdp6_HELP%
|
---|
79 | HKR, Ndi\Interfaces, UpperRange, 0, ndis5
|
---|
80 | HKR, Ndi\Interfaces, LowerRange, 0, ethernet
|
---|
81 |
|
---|
82 | [Strings]
|
---|
83 | Provider = "Oracle Corporation"
|
---|
84 | DiskDescription = "VirtualBox NDIS 6.0 Miniport Driver"
|
---|
85 | VBoxNetAdp6_Desc = "VirtualBox Host-Only Ethernet Adapter"
|
---|
86 | VBoxNetAdp6_HELP = "VirtualBox NDIS 6.0 Miniport Driver"
|
---|
87 | VBoxNetAdp6Service_Desc = "VirtualBox NDIS 6.0 Miniport Service"
|
---|