1 | ;
|
---|
2 | ; VirtualBox Bridged Networking Driver
|
---|
3 | ;
|
---|
4 |
|
---|
5 | ;
|
---|
6 | ; Copyright (C) 2008 Sun Microsystems, Inc.
|
---|
7 | ;
|
---|
8 | ; This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
9 | ; available from http://www.virtualbox.org. This file is free software;
|
---|
10 | ; you can redistribute it and/or modify it under the terms of the GNU
|
---|
11 | ; General Public License (GPL) as published by the Free Software
|
---|
12 | ; Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
13 | ; VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
14 | ; hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
15 | ;
|
---|
16 | ; Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
17 | ; Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
18 | ; additional information or have any questions.
|
---|
19 | ;
|
---|
20 |
|
---|
21 | ;
|
---|
22 | ; Based in part on Microsoft DDK sample code for Ndis Intermediate Miniport passthru driver sample.
|
---|
23 | ; Copyright (c) 1993-1999, Microsoft Corporation
|
---|
24 | ;
|
---|
25 |
|
---|
26 | [Version]
|
---|
27 | signature = "$Windows NT$"
|
---|
28 | ;cat CatalogFile = VBoxNetFlt.cat
|
---|
29 | Class = Net
|
---|
30 | ClassGUID = {4d36e972-e325-11ce-bfc1-08002be10318}
|
---|
31 | Provider = %Provider%
|
---|
32 | ;DriverPackageType=NdisImMiniport
|
---|
33 | ;DriverPackageDisplayName=%VBoxNetFltMP_Desc%
|
---|
34 | ;edit-DriverVer=08/13/2008,1.1.0.1
|
---|
35 |
|
---|
36 | [ControlFlags]
|
---|
37 | ExcludeFromSelect = sun_VBoxNetFltmp
|
---|
38 |
|
---|
39 | [DestinationDirs]
|
---|
40 | DefaultDestDir=12
|
---|
41 | ; No files to copy
|
---|
42 |
|
---|
43 | [Manufacturer]
|
---|
44 | %Provider% = VBox,NTx86,NTia64,NTamd64
|
---|
45 |
|
---|
46 | ; For Win2K
|
---|
47 | [VBox]
|
---|
48 | %VBoxNetFltMP_Desc% = VBoxNetFltMP.ndi, sun_VBoxNetFltmp
|
---|
49 |
|
---|
50 | ; For XP and later
|
---|
51 | [VBox.NTx86]
|
---|
52 | %VBoxNetFltMP_Desc% = VBoxNetFltMP.ndi, sun_VBoxNetFltmp
|
---|
53 |
|
---|
54 | [VBox.NTia64]
|
---|
55 | %VBoxNetFltMP_Desc% = VBoxNetFltMP.ndi, sun_VBoxNetFltmp
|
---|
56 |
|
---|
57 | [VBox.NTamd64]
|
---|
58 | %VBoxNetFltMP_Desc% = VBoxNetFltMP.ndi, sun_VBoxNetFltmp
|
---|
59 |
|
---|
60 | [VBoxNetFltMP.ndi]
|
---|
61 | Characteristics = 0x29 ;NCF_NOT_USER_REMOVABLE | NCF_VIRTUAL | NCF_HIDDEN
|
---|
62 | CopyFiles =
|
---|
63 |
|
---|
64 | [VBoxNetFltMP.ndi.Services]
|
---|
65 | AddService = VBoxNetFlt,0x2, VBoxNetFltMP.AddService
|
---|
66 |
|
---|
67 |
|
---|
68 | [VBoxNetFltMP.AddService]
|
---|
69 | ServiceType = 1 ;SERVICE_KERNEL_DRIVER
|
---|
70 | StartType = 3 ;SERVICE_DEMAND_START
|
---|
71 | ErrorControl = 1 ;SERVICE_ERROR_NORMAL
|
---|
72 | ServiceBinary = %12%\VBoxNetFlt.sys
|
---|
73 |
|
---|
74 |
|
---|
75 | [VBoxNetFltMP.AddService.AddReg]
|
---|
76 | ; ----------------------------------------------------------------------
|
---|
77 | ; Add any miniport-specific parameters here. These are params that your
|
---|
78 | ; filter device is going to use.
|
---|
79 | ;
|
---|
80 | ;HKR, Parameters, ParameterName, 0x10000, "MultiSz", "Parameter", "Value"
|
---|
81 | ;HKR, Parameters, ParameterName2, 0x10001, 4
|
---|
82 |
|
---|
83 | [Strings]
|
---|
84 | Provider = "Sun Microsystems, Inc."
|
---|
85 | VBoxNetFltMP_Desc = "VirtualBox Bridged Networking Driver Miniport"
|
---|
86 |
|
---|
87 | [SourceDisksNames]
|
---|
88 | ;None
|
---|
89 |
|
---|
90 | [SourceDisksFiles]
|
---|
91 | ;None
|
---|
92 |
|
---|
93 |
|
---|
94 |
|
---|