1 | ; $Id: VBoxNetAdp6.inf 93115 2022-01-01 11:31:46Z 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 | ;
|
---|
9 | ; Copyright (C) 2014-2022 Oracle Corporation
|
---|
10 | ;
|
---|
11 | ; This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
12 | ; available from http://www.virtualbox.org. This file is free software;
|
---|
13 | ; you can redistribute it and/or modify it under the terms of the GNU
|
---|
14 | ; General Public License (GPL) as published by the Free Software
|
---|
15 | ; Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
16 | ; VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
17 | ; hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
18 | ;
|
---|
19 | ; The contents of this file may alternatively be used under the terms
|
---|
20 | ; of the Common Development and Distribution License Version 1.0
|
---|
21 | ; (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
22 | ; VirtualBox OSE distribution, in which case the provisions of the
|
---|
23 | ; CDDL are applicable instead of those of the GPL.
|
---|
24 | ;
|
---|
25 | ; You may elect to license modified versions of this file under the
|
---|
26 | ; terms and conditions of either the GPL or the CDDL or both.
|
---|
27 | ;
|
---|
28 |
|
---|
29 | [Version]
|
---|
30 | Signature = "$Windows NT$"
|
---|
31 | ;cat CatalogFile = VBoxNetAdp6.cat
|
---|
32 | Class = Net
|
---|
33 | ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
|
---|
34 | Provider = %Provider%
|
---|
35 | ;edit-DriverVer=10/23/2014,1.0.1.0
|
---|
36 |
|
---|
37 |
|
---|
38 | [Manufacturer]
|
---|
39 | %Provider% = VBox,NTx86,NTamd64
|
---|
40 |
|
---|
41 | [ControlFlags]
|
---|
42 |
|
---|
43 | [VBox]
|
---|
44 | %VBoxNetAdp6_Desc% = VBoxNetAdp6.ndi, sun_VBoxNetAdp
|
---|
45 |
|
---|
46 | [VBox.NTx86]
|
---|
47 | %VBoxNetAdp6_Desc% = VBoxNetAdp6.ndi, sun_VBoxNetAdp
|
---|
48 |
|
---|
49 | [VBox.NTamd64]
|
---|
50 | %VBoxNetAdp6_Desc% = VBoxNetAdp6.ndi, sun_VBoxNetAdp
|
---|
51 |
|
---|
52 | [VBoxNetAdp6.ndi]
|
---|
53 | AddReg = VBoxNetAdp6.ndi.AddReg
|
---|
54 | Characteristics = 0x1 ; NCF_VIRTUAL
|
---|
55 | *IfType = 0x6 ; IF_TYPE_ETHERNET_CSMACD
|
---|
56 | *MediaType = 0x0 ; NdisMedium802_3
|
---|
57 | *PhysicalMediaType = 14 ; NdisPhysicalMedium802_3
|
---|
58 | CopyFiles = VBoxNetAdp6.Files.Sys
|
---|
59 |
|
---|
60 | [VBoxNetAdp6.ndi.Services]
|
---|
61 | AddService = VBoxNetAdp, 2, VBoxNetAdp6.AddService
|
---|
62 |
|
---|
63 | [VBoxNetAdp6.AddService]
|
---|
64 | DisplayName = %VBoxNetAdp6Service_Desc%
|
---|
65 | ServiceType = 1 ;SERVICE_KERNEL_DRIVER
|
---|
66 | StartType = 3 ;SERVICE_DEMAND_START
|
---|
67 | ErrorControl = 1 ;SERVICE_ERROR_NORMAL
|
---|
68 | ServiceBinary = %12%\VBoxNetAdp6.sys
|
---|
69 | LoadOrderGroup = NDIS
|
---|
70 |
|
---|
71 | [SourceDisksNames]
|
---|
72 | 1=%DiskDescription%,"",,
|
---|
73 |
|
---|
74 | [SourceDisksFiles]
|
---|
75 | VBoxNetAdp6.sys=1
|
---|
76 |
|
---|
77 | [DestinationDirs]
|
---|
78 | DefaultDestDir = 12
|
---|
79 | VBoxNetAdp6.Files.Sys = 12 ; %windir%\System32\drivers
|
---|
80 |
|
---|
81 | [VBoxNetAdp6.Files.Sys]
|
---|
82 | VBoxNetAdp6.sys,,,2
|
---|
83 |
|
---|
84 | [VBoxNetAdp6.ndi.AddReg]
|
---|
85 | HKR, , *NdisDeviceType, 0x00010001, 1 ; NDIS_DEVICE_TYPE_ENDPOINT
|
---|
86 | HKR, , BusNumber, 0, "0"
|
---|
87 | HKR, Ndi, Service, 0, VBoxNetAdp
|
---|
88 | HKR, Ndi, HelpText, , %VBoxNetAdp6_HELP%
|
---|
89 | HKR, Ndi\Interfaces, UpperRange, 0, ndis5
|
---|
90 | HKR, Ndi\Interfaces, LowerRange, 0, ethernet
|
---|
91 |
|
---|
92 | [Strings]
|
---|
93 | Provider = "Oracle Corporation"
|
---|
94 | DiskDescription = "VirtualBox NDIS 6.0 Miniport Driver"
|
---|
95 | VBoxNetAdp6_Desc = "VirtualBox Host-Only Ethernet Adapter"
|
---|
96 | VBoxNetAdp6_HELP = "VirtualBox NDIS 6.0 Miniport Driver"
|
---|
97 | VBoxNetAdp6Service_Desc = "VirtualBox NDIS 6.0 Miniport Service"
|
---|