2011-07-01 02:37:55 +02:00
|
|
|
## @file
|
|
|
|
# Lite Fat driver only used in Pei Phase.
|
|
|
|
#
|
2019-01-16 09:13:31 +01:00
|
|
|
# Copyright (c) 2006 - 2019, Intel Corporation. All rights reserved.<BR>
|
2011-07-01 02:37:55 +02:00
|
|
|
#
|
2019-04-04 01:03:46 +02:00
|
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
2011-07-01 02:37:55 +02:00
|
|
|
#
|
|
|
|
##
|
|
|
|
|
|
|
|
[Defines]
|
|
|
|
INF_VERSION = 0x00010005
|
|
|
|
BASE_NAME = FatPei
|
2014-08-28 08:39:53 +02:00
|
|
|
MODULE_UNI_FILE = FatPei.uni
|
2011-07-01 02:37:55 +02:00
|
|
|
FILE_GUID = 5B60CCFD-1011-4BCF-B7D1-BB99CA96A603
|
|
|
|
MODULE_TYPE = PEIM
|
|
|
|
VERSION_STRING = 1.0
|
|
|
|
|
|
|
|
ENTRY_POINT = FatPeimEntry
|
|
|
|
|
|
|
|
#
|
|
|
|
# The following information is for reference only and not required by the build tools.
|
|
|
|
#
|
2018-06-29 05:23:44 +02:00
|
|
|
# VALID_ARCHITECTURES = IA32 X64 EBC
|
2011-07-01 02:37:55 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
[Sources]
|
2019-01-16 09:13:31 +01:00
|
|
|
Mbr.c
|
2019-01-16 07:59:57 +01:00
|
|
|
Gpt.c
|
2019-01-16 09:13:31 +01:00
|
|
|
Eltorito.c
|
2011-07-01 02:37:55 +02:00
|
|
|
Part.c
|
|
|
|
FatLiteApi.c
|
|
|
|
FatLiteLib.c
|
|
|
|
FatLiteAccess.c
|
|
|
|
FatLiteApi.h
|
|
|
|
FatLitePeim.h
|
|
|
|
FatLiteFmt.h
|
|
|
|
|
|
|
|
|
|
|
|
[Packages]
|
|
|
|
MdePkg/MdePkg.dec
|
|
|
|
MdeModulePkg/MdeModulePkg.dec
|
|
|
|
|
|
|
|
|
|
|
|
[LibraryClasses]
|
|
|
|
PcdLib
|
|
|
|
BaseMemoryLib
|
2019-01-16 07:59:57 +01:00
|
|
|
MemoryAllocationLib
|
2011-07-01 02:37:55 +02:00
|
|
|
PeimEntryPoint
|
|
|
|
BaseLib
|
|
|
|
DebugLib
|
|
|
|
PeiServicesTablePointerLib
|
|
|
|
PeiServicesLib
|
|
|
|
|
|
|
|
|
|
|
|
[Guids]
|
2014-08-28 08:39:53 +02:00
|
|
|
gRecoveryOnFatUsbDiskGuid ## SOMETIMES_CONSUMES ## UNDEFINED
|
|
|
|
gRecoveryOnFatIdeDiskGuid ## SOMETIMES_CONSUMES ## UNDEFINED
|
|
|
|
gRecoveryOnFatFloppyDiskGuid ## SOMETIMES_CONSUMES ## UNDEFINED
|
2018-05-21 07:12:09 +02:00
|
|
|
gRecoveryOnFatNvmeDiskGuid ## SOMETIMES_CONSUMES ## UNDEFINED
|
2019-01-16 07:59:57 +01:00
|
|
|
gEfiPartTypeUnusedGuid ## SOMETIMES_CONSUMES ## UNDEFINED
|
2011-07-01 02:37:55 +02:00
|
|
|
|
|
|
|
|
|
|
|
[Ppis]
|
2016-12-08 10:09:59 +01:00
|
|
|
gEfiPeiVirtualBlockIoPpiGuid ## SOMETIMES_CONSUMES PPI_NOTIFY
|
|
|
|
gEfiPeiVirtualBlockIo2PpiGuid ## SOMETIMES_CONSUMES PPI_NOTIFY
|
|
|
|
gEfiPeiDeviceRecoveryModulePpiGuid ## SOMETIMES_PRODUCES
|
2011-07-01 02:37:55 +02:00
|
|
|
|
2016-10-08 03:55:59 +02:00
|
|
|
[Pcd]
|
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdRecoveryFileName ## CONSUMES
|
|
|
|
|
2011-07-01 02:37:55 +02:00
|
|
|
[Depex]
|
2019-05-07 11:10:07 +02:00
|
|
|
gEfiPeiMemoryDiscoveredPpiGuid
|
2011-07-01 02:37:55 +02:00
|
|
|
|
2014-08-28 08:39:53 +02:00
|
|
|
[UserExtensions.TianoCore."ExtraFiles"]
|
|
|
|
FatPeiExtra.uni
|