mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 20:56:26 +00:00
added "generic floppy disk controller" (currently using NO_DRV)
svn path=/trunk/; revision=20100
This commit is contained in:
parent
6b611c45ba
commit
2a4094cc09
1 changed files with 64 additions and 0 deletions
64
reactos/media/inf/fdc.inf
Normal file
64
reactos/media/inf/fdc.inf
Normal file
|
@ -0,0 +1,64 @@
|
|||
; FDC.INF
|
||||
|
||||
; Installation file for floppy disk controllers
|
||||
|
||||
[Version]
|
||||
Signature = "$Windows NT$"
|
||||
;Signature = "$ReactOS$"
|
||||
LayoutFile = layout.inf
|
||||
Class = FDC
|
||||
ClassGUID = {4D36E96A-E325-11CE-BFC1-08002BE10318}
|
||||
Provider = %ReactOS%
|
||||
DriverVer = 15/08/2005,1.01.0.0
|
||||
|
||||
[DestinationDirs]
|
||||
DefaultDestDir = 12
|
||||
|
||||
[ClassInstall32.NT]
|
||||
AddReg = FDC.NT.AddReg
|
||||
|
||||
[FDC.NT.AddReg]
|
||||
HKR, , , 0, %FDCClassName%
|
||||
HKR, , Icon, 0, "-9"
|
||||
HKR,,NoInstallClass,,1
|
||||
|
||||
[Manufacturer]
|
||||
%GenericMfg% = GenericMfg
|
||||
|
||||
[GenericMfg]
|
||||
;FIXME: We do not have a driver yet
|
||||
;%*PNP0700.DeviceDesc% = fdc_Inst,*PNP0700
|
||||
%*PNP0700.DeviceDesc% = NO_DRV,*PNP0700
|
||||
|
||||
;----------------------------- FDC DRIVER -----------------------------
|
||||
|
||||
[fdc_Inst.NT]
|
||||
CopyFiles = fdc_CopyFiles.NT
|
||||
|
||||
[fdc_CopyFiles.NT]
|
||||
fdc.sys
|
||||
|
||||
[fdc_Inst.NT.Services]
|
||||
AddService = fdc, 0x00000002, fdc_Service_Inst
|
||||
|
||||
[fdc_Service_Inst]
|
||||
ServiceType = 1
|
||||
StartType = 0
|
||||
ErrorControl = 1
|
||||
ServiceBinary = %12%\fdc.sys
|
||||
|
||||
;---------------------------- NO DRIVER REQ -----------------------------
|
||||
|
||||
[NO_DRV]
|
||||
|
||||
[NO_DRV.Services]
|
||||
AddService = , 0x00000002
|
||||
|
||||
;-------------------------------- STRINGS -------------------------------
|
||||
|
||||
[Strings]
|
||||
ReactOS = "ReactOS Team"
|
||||
FDCClassName = "Floppy disks controllers"
|
||||
|
||||
GenericMfg = "(Generic floppy disk controllers)"
|
||||
*PNP0700.DeviceDesc = "Generic floppy disk controller"
|
Loading…
Add table
Add a link
Reference in a new issue