]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkModulePkg/Bus/Isa/IsaFloppy/Dxe/IsaFloppy.inf
Remove the EntryPoint.c from FloppyDxe.
[mirror_edk2.git] / IntelFrameworkModulePkg / Bus / Isa / IsaFloppy / Dxe / IsaFloppy.inf
1 #/** @file
2 # Component description file for IsaFloppy module.
3 #
4 # ISA Floppy Driver
5 # 1. Support two types diskette drive
6 # 1.44M drive and 2.88M drive (and now only support 1.44M)
7 # 2. Support two diskette drives
8 # 3. Use DMA channel 2 to transfer data
9 # 4. Do not use interrupt
10 # 5. Support diskette change line signal and write protect
11 #
12 # Conforming to EFI driver model
13 # Copyright (c) 2006 - 2007, Intel Corporation.
14 #
15 # All rights reserved.
16 # This software and associated documentation (if any) is furnished
17 # under a license and may only be used or copied in accordance
18 # with the terms of the license. Except as permitted by such
19 # license, no part of this software or documentation may be
20 # reproduced, stored in a retrieval system, or transmitted in any
21 # form or by any means without the express written consent of
22 # Intel Corporation.
23 #
24 #
25 #**/
26
27 ################################################################################
28 #
29 # Defines Section - statements that will be processed to create a Makefile.
30 #
31 ################################################################################
32 [Defines]
33 INF_VERSION = 0x00010005
34 BASE_NAME = IsaFloppy
35 FILE_GUID = 0abd8284-6da3-4616-971a-83a5148067ba
36 MODULE_TYPE = DXE_DRIVER
37 VERSION_STRING = 1.0
38 EDK_RELEASE_VERSION = 0x00020000
39 EFI_SPECIFICATION_VERSION = 0x00020000
40
41 ENTRY_POINT = InitializeIsaFloppy
42
43 #
44 # The following information is for reference only and not required by the build tools.
45 #
46 # VALID_ARCHITECTURES = IA32 X64 IPF EBC
47 #
48 # DRIVER_BINDING = gFdcControllerDriver
49 # COMPONENT_NAME = gIsaFloppyComponentName
50 # Create Event Guid C Name: Event Type: EVENT_TYPE_PERIODIC_TIMER
51 #
52 #
53
54 ################################################################################
55 #
56 # Sources Section - list of files that are required for the build to succeed.
57 #
58 ################################################################################
59
60 [Sources.common]
61 ComponentName.c
62 ComponentName.h
63 IsaFloppyCtrl.c
64 IsaFloppyBlock.c
65 IsaFloppy.c
66 IsaFloppy.h
67
68 ################################################################################
69 #
70 # Package Dependency Section - list of Package files that are required for
71 # this module.
72 #
73 ################################################################################
74 [Packages]
75 MdePkg/MdePkg.dec
76 IntelFrameworkPkg/IntelFrameworkPkg.dec
77
78 ################################################################################
79 #
80 # Library Class Section - list of Library Classes that are required for
81 # this module.
82 #
83 ################################################################################
84
85 [LibraryClasses]
86 ReportStatusCodeLib
87 UefiBootServicesTableLib
88 MemoryAllocationLib
89 BaseMemoryLib
90 UefiLib
91 BaseLib
92 UefiDriverEntryPoint
93 DebugLib
94 TimerLib
95
96
97 ################################################################################
98 #
99 # Protocol C Name Section - list of Protocol and Protocol Notify C Names
100 # that this module uses or produces.
101 #
102 ################################################################################
103
104 [Protocols]
105 gEfiIsaIoProtocolGuid # PROTOCOL TO_START
106 gEfiBlockIoProtocolGuid # PROTOCOL BY_START
107 gEfiDevicePathProtocolGuid # PROTOCOL TO_START
108