1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
;/*++
;
;Copyright (c) 2014-2017 Red Hat Inc.
;
;Module Name:
; viorng.inf
;
;Abstract:
;
;Installation Notes:
; Using Devcon: Type "devcon install viorng.inf PCI\VEN_1AF4&DEV_1005&SUBSYS_00041AF4&REV_00" or
; "devcon install viorng.inf PCI\VEN_1AF4&DEV_1044&SUBSYS_11001AF4&REV_01" to install
;
;--*/
[Version]
Signature = "$WINDOWS NT$"
Class = System
ClassGuid = {4d36e97d-e325-11ce-bfc1-08002be10318}
Provider = %RedHatMfg%
CatalogFile = viorng.cat
PnpLockdown = 1
DriverVer=07/19/2017,100.74.104.14100
[DestinationDirs]
DefaultDestDir = 12
VirtRng_Provider_CopyFiles = 11
VirtRng_Wdf_CoInstaller_CopyFiles = 11
[SourceDisksNames]
1 = %DiskName%,,,""
[SourceDisksFiles]
viorng.sys = 1,,
viorngum.dll = 1
viorngci.dll = 1
;
; ---------------
; Install Section
; ---------------
[Manufacturer]
%RedHatMfg% = RedHat,NTamd64.10.0
[RedHat.NTamd64.10.0]
%VirtRng.DeviceDesc% = VirtRng_Device, PCI\VEN_1AF4&DEV_1005&SUBSYS_00041AF4&REV_00
%VirtRng.DeviceDesc% = VirtRng_Device, PCI\VEN_1AF4&DEV_1044&SUBSYS_11001AF4&REV_01
[VirtRng_Device.NT]
CopyFiles = VirtRng_CopyFiles
CopyFiles = VirtRng_Provider_CopyFiles
[VirtRng_Device.NT.HW]
AddReg = VirtRng_AddReg
[VirtRng_CopyFiles]
viorng.sys
[VirtRng_AddReg]
HKR,Interrupt Management,,0x00000010
HKR,Interrupt Management\MessageSignaledInterruptProperties,,0x00000010
HKR,Interrupt Management\MessageSignaledInterruptProperties,MSISupported,0x00010001,1
HKR,Interrupt Management\MessageSignaledInterruptProperties,MessageNumberLimit,0x00010001,1
; --------------------
; Service Installation
; --------------------
[VirtRng_Device.NT.Services]
AddService = VirtRng,0x00000002,VirtRng_Service_Install
[VirtRng_Service_Install]
DisplayName = %VirtRng.Service%
ServiceType = 1 ; SERVICE_KERNEL_DRIVER
StartType = 3 ; SERVICE_DEMAND_START
ErrorControl = 1 ; SERVICE_ERROR_NORMAL
ServiceBinary = %12%\viorng.sys
LoadOrderGroup = Extended Base
; -------------------------
; RNG Provider Installation
; -------------------------
[VirtRng_Provider_CopyFiles]
viorngum.dll
; -------------------------------------
; WDF & Device CoInstaller Installation
; -------------------------------------
[VirtRng_Device.NT.CoInstallers]
AddReg=VirtRng_Wdf_CoInstaller_AddReg
CopyFiles=VirtRng_Wdf_CoInstaller_CopyFiles
[VirtRng_Wdf_CoInstaller_AddReg]
HKR,,CoInstallers32,0x00010000,"viorngci.dll,VirtRngCoInstaller", \
;
[VirtRng_Wdf_CoInstaller_CopyFiles]
;
viorngci.dll
[VirtRng_Device.NT.Wdf]
KmdfService = VirtRng, VirtRng_wdfsect
[VirtRng_wdfsect]
KmdfLibraryVersion = 1.15
[Strings]
RedHatMfg = "Red Hat, Inc."
DiskName = "VirtIO RNG Installation Disk"
VirtRng.DeviceDesc = "VirtIO RNG Device"
VirtRng.Service = "VirtIO RNG Service"
|