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