mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 06:55:55 +00:00
[INF]
Add an inf file for floppy disk drives. If you have a floppy disk drive attached to your computer, it should appear in the device manager. svn path=/trunk/; revision=61154
This commit is contained in:
parent
f4e1b2faf9
commit
7549ebc34b
3 changed files with 67 additions and 0 deletions
|
@ -11,6 +11,7 @@ list(APPEND INF_FILES
|
|||
disk.inf
|
||||
display.inf
|
||||
fdc.inf
|
||||
flpydisk.inf
|
||||
font.inf
|
||||
hal.inf
|
||||
hdc.inf
|
||||
|
|
65
reactos/media/inf/flpydisk.inf
Normal file
65
reactos/media/inf/flpydisk.inf
Normal file
|
@ -0,0 +1,65 @@
|
|||
; FDC.INF
|
||||
|
||||
; Installation file for floppy disk drives
|
||||
|
||||
[Version]
|
||||
Signature = "$Windows NT$"
|
||||
;Signature = "$ReactOS$"
|
||||
LayoutFile = layout.inf
|
||||
Class = FloppyDisk
|
||||
ClassGuid = {4D36E980-E325-11CE-BFC1-08002BE10318}
|
||||
Provider = %ReactOS%
|
||||
DriverVer = 08/15/2005,1.01.0.0
|
||||
|
||||
[DestinationDirs]
|
||||
DefaultDestDir = 12
|
||||
|
||||
[ClassInstall32.NT]
|
||||
AddReg = Floppy.NT.AddReg
|
||||
|
||||
[Floppy.NT.AddReg]
|
||||
HKR, , , 0, %FloppyClassName%
|
||||
HKR, , Icon, 0, "-50"
|
||||
HKR, , NoInstallClass, , 1
|
||||
|
||||
[Manufacturer]
|
||||
%GenericMfg% = GenericMfg
|
||||
|
||||
[GenericMfg]
|
||||
;FIXME: We do not have a driver yet
|
||||
%Floppy.DeviceDesc% = NO_DRV, GenFloppyDisk
|
||||
;%Floppy.DeviceDesc% = floppy_Inst, GenFloppyDisk
|
||||
|
||||
;----------------------------- FDC DRIVER -----------------------------
|
||||
|
||||
[floppy_Inst.NT]
|
||||
CopyFiles = floppy_CopyFiles.NT
|
||||
|
||||
[floppy_CopyFiles.NT]
|
||||
flpydisk.sys
|
||||
|
||||
[flopy_Inst.NT.Services]
|
||||
AddService = flpydisk, 0x00000002, floppy_Service_Inst
|
||||
|
||||
[floppy_Service_Inst]
|
||||
ServiceType = 1
|
||||
StartType = 3
|
||||
ErrorControl = 1
|
||||
ServiceBinary = %12%\flpydisk.sys
|
||||
|
||||
|
||||
;---------------------------- NO DRIVER REQ -----------------------------
|
||||
|
||||
[NO_DRV]
|
||||
|
||||
[NO_DRV.Services]
|
||||
AddService = , 0x00000002
|
||||
|
||||
;-------------------------------- STRINGS -------------------------------
|
||||
|
||||
[Strings]
|
||||
ReactOS = "ReactOS Team"
|
||||
|
||||
FloppyClassName = "Floppy disk drives"
|
||||
GenericMfg = "(Generic floppy disk drives)"
|
||||
Floppy.DeviceDesc = "Generic floppy disk drive"
|
|
@ -10,6 +10,7 @@ cpu.inf
|
|||
disk.inf
|
||||
display.inf
|
||||
fdc.inf
|
||||
flpydisk.inf
|
||||
hal.inf
|
||||
hdc.inf
|
||||
input.inf
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue