]> git.proxmox.com Git - mirror_edk2.git/blame - IntelFrameworkModulePkg/Bus/Isa/IsaFloppyDxe/Dxe/IsaFloppy.inf
Rename IsaFloppy to IsaFloppyDxe
[mirror_edk2.git] / IntelFrameworkModulePkg / Bus / Isa / IsaFloppyDxe / Dxe / IsaFloppy.inf
CommitLineData
11f43dfd 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
6db49ee6 13#\r
14# Copyright (c) 2006 - 2007, Intel Corporation<BR>\r
15# All rights reserved. This program and the accompanying materials\r
16# are licensed and made available under the terms and conditions of the BSD License\r
17# which accompanies this distribution. The full text of the license may be found at\r
18# http://opensource.org/licenses/bsd-license.php\r
11f43dfd 19#\r
20#\r
21#**/\r
22\r
23################################################################################\r
24#\r
25# Defines Section - statements that will be processed to create a Makefile.\r
26#\r
27################################################################################\r
28[Defines]\r
29 INF_VERSION = 0x00010005\r
30 BASE_NAME = IsaFloppy\r
31 FILE_GUID = 0abd8284-6da3-4616-971a-83a5148067ba\r
32 MODULE_TYPE = DXE_DRIVER\r
33 VERSION_STRING = 1.0\r
34 EDK_RELEASE_VERSION = 0x00020000\r
35 EFI_SPECIFICATION_VERSION = 0x00020000\r
36\r
37 ENTRY_POINT = InitializeIsaFloppy\r
38\r
39#\r
40# The following information is for reference only and not required by the build tools.\r
41#\r
42# VALID_ARCHITECTURES = IA32 X64 IPF EBC\r
43#\r
44# DRIVER_BINDING = gFdcControllerDriver \r
45# COMPONENT_NAME = gIsaFloppyComponentName \r
46# Create Event Guid C Name: Event Type: EVENT_TYPE_PERIODIC_TIMER\r
47#\r
48#\r
49\r
50################################################################################\r
51#\r
52# Sources Section - list of files that are required for the build to succeed.\r
53#\r
54################################################################################\r
55\r
56[Sources.common]\r
57 ComponentName.c\r
58 ComponentName.h\r
59 IsaFloppyCtrl.c\r
60 IsaFloppyBlock.c\r
61 IsaFloppy.c\r
62 IsaFloppy.h\r
11f43dfd 63\r
64################################################################################\r
65#\r
66# Package Dependency Section - list of Package files that are required for\r
67# this module.\r
68#\r
69################################################################################\r
70[Packages]\r
71 MdePkg/MdePkg.dec\r
72 IntelFrameworkPkg/IntelFrameworkPkg.dec\r
73\r
74################################################################################\r
75#\r
76# Library Class Section - list of Library Classes that are required for\r
77# this module.\r
78#\r
79################################################################################\r
80\r
81[LibraryClasses]\r
82 ReportStatusCodeLib\r
83 UefiBootServicesTableLib\r
84 MemoryAllocationLib\r
85 BaseMemoryLib\r
86 UefiLib\r
87 BaseLib\r
88 UefiDriverEntryPoint\r
89 DebugLib\r
90 TimerLib\r
91\r
92\r
93################################################################################\r
94#\r
95# Protocol C Name Section - list of Protocol and Protocol Notify C Names\r
96# that this module uses or produces.\r
97#\r
98################################################################################\r
99\r
100[Protocols]\r
101 gEfiIsaIoProtocolGuid # PROTOCOL TO_START\r
102 gEfiBlockIoProtocolGuid # PROTOCOL BY_START\r
103 gEfiDevicePathProtocolGuid # PROTOCOL TO_START\r
104\r