Chipmunk
490d319ebe
README is copied from the WT1000 repo, but the recovery wim link was removed, as I couldn't find one on the DL801W. The tablets are nearly the same, so I don't know if it's worth making two repos but whatever
86 lines
4.3 KiB
INI
Executable file
86 lines
4.3 KiB
INI
Executable file
;/*++
|
|
;
|
|
;Copyright (c) 2013 Intel Corporation
|
|
;
|
|
;Module Name:
|
|
; iaiouart.inf
|
|
;
|
|
;Abstract:
|
|
; INF file for installing UART Controller driver
|
|
;
|
|
;Installation Notes:
|
|
; Using Devcon: Type "devcon update iaiouart.inf ACPI\INT33C4" to install on FPGA platforms
|
|
; Using Devcon: Type "devcon update iaiouart.inf ACPI\INT33C5" to install on FPGA platforms
|
|
;
|
|
;--*/
|
|
|
|
[Version]
|
|
Signature="$WINDOWS NT$"
|
|
Class=System
|
|
ClassGuid={4D36E97D-E325-11CE-BFC1-08002BE10318}
|
|
Provider=%INTEL%
|
|
DriverVer=11/15/2013,603.9600.2801.29953
|
|
|
|
CatalogFile = iaiouart.cat
|
|
|
|
[DestinationDirs]
|
|
DefaultDestDir = 12
|
|
|
|
; ================= Class section =====================
|
|
|
|
;[ClassInstall32]
|
|
;Addreg=SampleClassReg
|
|
|
|
;[SampleClassReg]
|
|
;HKR,,,0,%ClassName%
|
|
;HKR,,Icon,,-5
|
|
|
|
[SourceDisksNames]
|
|
1 = %DiskId1%,,,""
|
|
|
|
[SourceDisksFiles]
|
|
iaiouart.sys = 1,,
|
|
|
|
;*****************************************
|
|
; iaiouart Install Section
|
|
;*****************************************
|
|
|
|
[ControlFlags]
|
|
ExcludeFromSelect=*
|
|
|
|
[Manufacturer]
|
|
%INTEL%=Intel,NTx86
|
|
|
|
; For XP and later
|
|
[Intel.NTx86]
|
|
; DisplayName Section DeviceId CompatibleId
|
|
; ----------- ------- -------- ------------
|
|
%iaiouart.DeviceDescE6%= iaiouart_Inst, ACPI\80860F0A, ACPI\INT33BC
|
|
|
|
[iaiouart_Inst.NT]
|
|
CopyFiles=Drivers_Dir
|
|
|
|
[Drivers_Dir]
|
|
iaiouart.sys
|
|
|
|
;-------------- Service installation
|
|
[iaiouart_Inst.NT.Services]
|
|
AddService = iaiouart,%SPSVCINST_ASSOCSERVICE%, iaiouart_Service_Inst
|
|
|
|
; -------------- iaLPSS_UART driver install sections
|
|
[iaiouart_Service_Inst]
|
|
DisplayName = %iaiouart.SVCDESC%
|
|
ServiceType = 1 ; SERVICE_KERNEL_DRIVER
|
|
StartType = 3 ; SERVICE_DEMAND_START
|
|
ErrorControl = 1 ; SERVICE_ERROR_NORMAL
|
|
ServiceBinary = %12%\iaiouart.sys
|
|
LoadOrderGroup = Extended Base
|
|
Dependencies = SerCx
|
|
|
|
[Strings]
|
|
SPSVCINST_ASSOCSERVICE= 0x00000002
|
|
INTEL = "Intel Corporation"
|
|
StdMfg = "(Standard system devices)"
|
|
DiskId1 = "UART Controller Installation Disk #1"
|
|
iaiouart.DeviceDescE6 = "UART Controller"
|
|
iaiouart.SVCDESC = "UART Controller"
|