treewide: Fix doubled "the".
[cascardo/ovs.git] / datapath-windows / ovsext / ovsext.inf
1 ;
2 ; Copyright (c) VMware. All Rights Reserved.
3 ;
4
5 [version]
6 Signature   = "$Windows NT$"
7 Class       = NetService
8 ClassGUID   = {4D36E974-E325-11CE-BFC1-08002BE10318}
9 Provider    = %OVS%
10 CatalogFile = ovsext.cat
11 DriverVer   = 10/10/2013,1.0
12
13 [Manufacturer]
14 %OVS%=OVS,NTx86,NTia64,NTamd64
15
16 [OVS.NTx86]
17 %OVSExt_Desc%=Install, OVSExt
18
19 [OVS.NTia64]
20 %OVSExt_Desc%=Install, OVSExt
21
22 [OVS.NTamd64]
23 %OVSExt_Desc%=Install, OVSExt
24
25 ;-------------------------------------------------------------------------
26 ; Installation Section
27 ;-------------------------------------------------------------------------
28 [Install]
29 AddReg=Inst_Ndi
30 Characteristics=0x40000
31 NetCfgInstanceId="{583CC151-73EC-4A6A-8B47-578297AD7623}"
32 Copyfiles = OVSExt.copyfiles.sys
33
34 [SourceDisksNames]
35 1=%OVSExt_Desc%,"",,
36
37 [SourceDisksFiles]
38 OVSExt.sys=1
39
40 [DestinationDirs]
41 DefaultDestDir=12
42 OVSExt.copyfiles.sys=12
43
44 [OVSExt.copyfiles.sys]
45 OVSExt.sys,,,2
46
47
48 ;-------------------------------------------------------------------------
49 ; Ndi installation support
50 ;-------------------------------------------------------------------------
51 [Inst_Ndi]
52 HKR, Ndi,Service,,"OVSExt"
53 HKR, Ndi,CoServices,0x00010000,"OVSExt"
54 HKR, Ndi,HelpText,,%OVSExt_HelpText%
55 HKR, Ndi,FilterClass,,"ms_switch_forward"
56 HKR, Ndi,FilterType,0x00010001,0x00000002
57 HKR, Ndi\Interfaces,UpperRange,,"noupper"
58 HKR, Ndi\Interfaces,LowerRange,,"nolower"
59 HKR, Ndi\Interfaces, FilterMediaTypes,,"vmnetextension"
60 HKR, Ndi,FilterRunType, 0x00010001, 2 ; optional
61
62 ;-------------------------------------------------------------------------
63 ; Service installation support, common.EventLog here is to demonstrate how to
64 ; write an enent log
65 ;-------------------------------------------------------------------------
66 [Install.Services]
67 AddService=OVSExt,,OVSExt_Service_Inst;, common.EventLog
68
69 [OVSExt_Service_Inst]
70 DisplayName     = %OVSExt_Desc%
71 ServiceType     = 1 ;SERVICE_KERNEL_DRIVER
72 StartType       = 1 ;SERVICE_SYSTEM_START
73 ErrorControl    = 1 ;SERVICE_ERROR_NORMAL
74 ServiceBinary   = %12%\OVSExt.sys
75 LoadOrderGroup  = NDIS
76 Description     = %OVSExt_Desc%
77 AddReg          = Common.Params.reg
78
79 [Install.Remove.Services]
80 DelService=OVSExt,0x200
81
82 [Strings]
83 OVS = "Open vSwitch"
84 OVSExt_Desc = "Open vSwitch Extension"
85 OVSExt_HelpText = "Open vSwitch forwarding switch extension"