]> git.proxmox.com Git - mirror_edk2.git/blame - IntelFrameworkModulePkg/Bus/Isa/IsaFloppyDxe/IsaFloppyDxe.inf
Update some module INF files in IntelFrameworkModulePkg to UEFI_DRIVER
[mirror_edk2.git] / IntelFrameworkModulePkg / Bus / Isa / IsaFloppyDxe / IsaFloppyDxe.inf
CommitLineData
c21fc3e8 1#/** @file\r
2# Component description file for IsaFloppy module.\r
3#\r
4# ISA Floppy Driver\r
5# 1. Support two types diskette drive\r
6# 1.44M drive and 2.88M drive (and now only support 1.44M)\r
7# 2. Support two diskette drives\r
8# 3. Use DMA channel 2 to transfer data\r
9# 4. Do not use interrupt\r
10# 5. Support diskette change line signal and write protect\r
11# \r
12# Conforming to EFI driver model\r
13#\r
f8cd287b 14# Copyright (c) 2007, Intel Corporation\r
c21fc3e8 15#\r
f8cd287b 16# All rights reserved. This program and the accompanying materials\r
17# are licensed and made available under the terms and conditions of the BSD License\r
18# which accompanies this distribution. The full text of the license may be found at\r
19# http://opensource.org/licenses/bsd-license.php\r
20#\r
21# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
22# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
c21fc3e8 23#\r
24#**/\r
25\r
26[Defines]\r
27 INF_VERSION = 0x00010005\r
28 BASE_NAME = IsaFloppyDxe\r
29 FILE_GUID = 0abd8284-6da3-4616-971a-83a5148067ba\r
1a8802f7 30 MODULE_TYPE = UEFI_DRIVER\r
c21fc3e8 31 VERSION_STRING = 1.0\r
32 EDK_RELEASE_VERSION = 0x00020000\r
33 EFI_SPECIFICATION_VERSION = 0x00020000\r
34\r
35 ENTRY_POINT = InitializeIsaFloppy\r
36\r
37# VALID_ARCHITECTURES = IA32 X64 IPF EBC\r
38\r
39[Sources.common]\r
40 ComponentName.c\r
41 ComponentName.h\r
42 IsaFloppyCtrl.c\r
43 IsaFloppyBlock.c\r
44 IsaFloppy.c\r
45 IsaFloppy.h\r
46\r
47[Packages]\r
48 MdePkg/MdePkg.dec\r
49 IntelFrameworkPkg/IntelFrameworkPkg.dec\r
888b8afb 50 IntelFrameworkModulePkg/IntelFrameworkModulePkg.dec\r
c21fc3e8 51\r
52[LibraryClasses]\r
53 ReportStatusCodeLib\r
54 UefiBootServicesTableLib\r
55 MemoryAllocationLib\r
56 BaseMemoryLib\r
57 UefiLib\r
58 BaseLib\r
59 UefiDriverEntryPoint\r
60 DebugLib\r
61 TimerLib\r
62\r
63[Protocols]\r
64 gEfiIsaIoProtocolGuid # PROTOCOL TO_START\r
65 gEfiBlockIoProtocolGuid # PROTOCOL BY_START\r
66 gEfiDevicePathProtocolGuid # PROTOCOL TO_START\r
67\r
1a8802f7 68\r