1 | ; $Id: VBoxNetAdp.inf 82968 2020-02-04 10:35:17Z vboxsync $
|
---|
2 | ;; @file
|
---|
3 | ; VBoxNetAdp.inf - VirtualBox Host-Only Driver inf file
|
---|
4 | ;
|
---|
5 |
|
---|
6 | ;
|
---|
7 | ; Copyright (C) 2011-2020 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 | ;cat CatalogFile = VBoxNetAdp.cat
|
---|
30 | Class = Net
|
---|
31 | ClassGUID = {4d36e972-e325-11ce-bfc1-08002be10318}
|
---|
32 | Provider = %Provider%
|
---|
33 | ; DriverPackageType=Network
|
---|
34 | ; DriverPackageDisplayName=%VBoxNetAdp_Desc%
|
---|
35 | ;edit-DriverVer=08/13/2008,1.1.0.1
|
---|
36 |
|
---|
37 | [ControlFlags]
|
---|
38 | ;ExcludeFromSelect = sun_VBoxNetAdp
|
---|
39 |
|
---|
40 | [SourceDisksNames]
|
---|
41 | 1=%DiskDescription%,"",,
|
---|
42 |
|
---|
43 | [SourceDisksFiles]
|
---|
44 | VBoxNetAdp.sys=1
|
---|
45 |
|
---|
46 | [DestinationDirs]
|
---|
47 | DefaultDestDir = 12
|
---|
48 | VBoxNetAdp.Files.Sys = 12 ; %windir%\System32\drivers
|
---|
49 |
|
---|
50 | [Manufacturer]
|
---|
51 | %Provider% = VBox,NTx86,NTia64,NTamd64
|
---|
52 |
|
---|
53 | [VBox]
|
---|
54 | %VBoxNetAdp_Desc% = VBoxNetAdp.ndi, sun_VBoxNetAdp
|
---|
55 |
|
---|
56 | [VBox.NTx86]
|
---|
57 | %VBoxNetAdp_Desc% = VBoxNetAdp.ndi, sun_VBoxNetAdp
|
---|
58 |
|
---|
59 | [VBox.NTia64]
|
---|
60 | %VBoxNetAdp_Desc% = VBoxNetAdp.ndi, sun_VBoxNetAdp
|
---|
61 |
|
---|
62 | [VBox.NTamd64]
|
---|
63 | %VBoxNetAdp_Desc% = VBoxNetAdp.ndi, sun_VBoxNetAdp
|
---|
64 |
|
---|
65 | [VBoxNetAdp.ndi]
|
---|
66 | Characteristics = 0x1 ; NCF_VIRTUAL
|
---|
67 | CopyFiles = VBoxNetAdp.Files.Sys
|
---|
68 | AddReg = VBoxNetAdp.AddReg
|
---|
69 |
|
---|
70 | [VBoxNetAdp.Files.Sys]
|
---|
71 | VBoxNetAdp.sys,,,2
|
---|
72 |
|
---|
73 | [VBoxNetAdp.ndi.Services]
|
---|
74 | AddService = VBoxNetAdp,0x2, VBoxNetAdp.AddService
|
---|
75 |
|
---|
76 | [VBoxNetAdp.AddService]
|
---|
77 | DisplayName = %VBoxNetAdp_Desc%
|
---|
78 | ServiceType = 1 ;SERVICE_KERNEL_DRIVER
|
---|
79 | StartType = 3 ;SERVICE_DEMAND_START
|
---|
80 | ErrorControl = 1 ;SERVICE_ERROR_NORMAL
|
---|
81 | ServiceBinary = %12%\VBoxNetAdp.sys
|
---|
82 | LoadOrderGroup = NDIS
|
---|
83 |
|
---|
84 | [VBoxNetAdp.AddReg]
|
---|
85 | HKR, , *NdisDeviceType, 0x00010001, 1 ; NDIS_DEVICE_TYPE_ENDPOINT
|
---|
86 | HKR, Ndi, Service, 0, "VBoxNetAdp"
|
---|
87 | HKR, Ndi\Interfaces, UpperRange, 0, "ndis5"
|
---|
88 | HKR, Ndi\Interfaces, LowerRange, 0, "ethernet"
|
---|
89 |
|
---|
90 | [Strings]
|
---|
91 | Provider = "Oracle Corporation"
|
---|
92 | VBoxNetAdp_Desc = "VirtualBox Host-Only Ethernet Adapter"
|
---|
93 | DiskDescription = "VirtualBox Host-Only Ethernet Adapter"
|
---|
94 |
|
---|