]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkModulePkg/Bus/Isa/IsaFloppy/Pei/FloppyPeim.inf
72ad53ac89e6643605ca50c82658bad8d11d9847
[mirror_edk2.git] / IntelFrameworkModulePkg / Bus / Isa / IsaFloppy / Pei / FloppyPeim.inf
1 #/** @file
2 # Floppy Peim to support Fv Recovery.
3 #
4 # This module detects Floppy devices. If found, it will install BlockIo PPI.
5 # This module is only dispatched in Recovery Boot mode.
6 #
7 # Copyright (c) 2006 - 2007, Intel Corporation<BR>
8 # All rights reserved. This program and the accompanying materials
9 # are licensed and made available under the terms and conditions of the BSD License
10 # which accompanies this distribution. The full text of the license may be found at
11 # http://opensource.org/licenses/bsd-license.php
12 #
13 #
14 #**/
15
16 ################################################################################
17 #
18 # Defines Section - statements that will be processed to create a Makefile.
19 #
20 ################################################################################
21 [Defines]
22 INF_VERSION = 0x00010005
23 BASE_NAME = FloppyPeim
24 FILE_GUID = B7A5041B-78BA-48e3-B63B-44C7578113B6
25 MODULE_TYPE = PEIM
26 VERSION_STRING = 1.0
27 EDK_RELEASE_VERSION = 0x00020000
28 EFI_SPECIFICATION_VERSION = 0x00020000
29
30 ENTRY_POINT = FdcPeimEntry
31
32 #
33 # The following information is for reference only and not required by the build tools.
34 #
35 # VALID_ARCHITECTURES = IA32 X64 IPF EBC
36 #
37
38 ################################################################################
39 #
40 # Sources Section - list of files that are required for the build to succeed.
41 #
42 ################################################################################
43
44 [Sources.common]
45 FloppyPeim.c
46 FloppyPeim.h
47 Fdc.h
48
49
50 ################################################################################
51 #
52 # Package Dependency Section - list of Package files that are required for
53 # this module.
54 #
55 ################################################################################
56
57 [Packages]
58 MdePkg/MdePkg.dec
59 IntelFrameworkPkg/IntelFrameworkPkg.dec
60
61
62 ################################################################################
63 #
64 # Library Class Section - list of Library Classes that are required for
65 # this module.
66 #
67 ################################################################################
68
69 [LibraryClasses]
70 IoLib
71 TimerLib
72 ReportStatusCodeLib
73 BaseMemoryLib
74 PeiServicesLib
75 PeimEntryPoint
76 DebugLib
77
78
79 ################################################################################
80 #
81 # PPI C Name Section - list of PPI and PPI Notify C Names that this module
82 # uses or produces.
83 #
84 ################################################################################
85
86 [Ppis]
87 gEfiPei144FloppyBlockIoPpiGuid # PPI ALWAYS_PRODUCED
88
89
90 ################################################################################
91 #
92 # Dependency Expression Section - list of Dependency expressions that are required for
93 # this module.
94 #
95 ################################################################################
96
97 [Depex]
98 gEfiPeiMemoryDiscoveredPpiGuid AND gEfiPeiLoadFilePpiGuid AND gEfiPeiBootInRecoveryModePpiGuid
99