-
Notifications
You must be signed in to change notification settings - Fork 2
/
spbProbe.inx
73 lines (59 loc) · 3.66 KB
/
spbProbe.inx
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
;/*++
;
;Copyright (c) Microsoft Corporation. All rights reserved.
;
;Module Name:
; spbProbe.inf
;
;Abstract:
; INF file for installing the I2C/SPI Probe Controller Driver
;
;Installation Notes:
; Using Devcon: Type "devcon update spbProbe.inf ACPI\spbProbe" to install
;
;--*/
[Version]
Signature="$WINDOWS NT$"
Class=System
ClassGuid={4D36E97D-E325-11CE-BFC1-08002BE10318}
Provider=%ProviderString%
DriverVer=04/09/2016,00.00.00.000
CatalogFile = SpbSamples.cat
[DestinationDirs]
DefaultDestDir = 12
; ================= Class section =====================
[SourceDisksNames]
1 = %DiskId1%,,,""
[SourceDisksFiles]
spbProbe.sys = 1,,
;*****************************************
; spbProbe Install Section
;*****************************************
[Manufacturer]
%StdMfg%=Standard,NT$ARCH$
; Decorated model section take precedence over undecorated
; ones on XP and later.
[Standard.NT$ARCH$]
%spbProbe.DeviceDesc%=spbProbe_Device, ACPI\PROBE01
[spbProbe_Device.NT]
CopyFiles=Drivers_Dir
[Drivers_Dir]
spbProbe.sys
;-------------- Service installation
[spbProbe_Device.NT.Services]
AddService = spbProbe,%SPSVCINST_ASSOCSERVICE%, spbProbe_Service_Inst
; -------------- skeletoni2c driver install sections
[spbProbe_Service_Inst]
DisplayName = %spbProbe.SVCDESC%
ServiceType = 1 ; SERVICE_KERNEL_DRIVER
StartType = 3 ; SERVICE_DEMAND_START
ErrorControl = 1 ; SERVICE_ERROR_NORMAL
ServiceBinary = %12%\spbProbe.sys
Dependencies = SpbCx
[Strings]
SPSVCINST_ASSOCSERVICE= 0x00000002
ProviderString = "bentiss"
StdMfg = "(Standard system devices)"
DiskId1 = "I2C/SPI Probe Controller Installation Disk #1"
spbProbe.DeviceDesc = "I2C/SPI Probe Controller Driver"
spbProbe.SVCDESC = "I2C/SPI Probe Controller Service"