Last change
on this file since 105668 was 99404, checked in by vboxsync, 2 years ago |
Devices/EFI/FirmwareNew: Update to edk2-stable202302 and make it build, bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
1.4 KB
|
Line | |
---|
1 | ## @file
|
---|
2 | # Fault Tolerant Write PEI Driver.
|
---|
3 | #
|
---|
4 | # This module installs gEdkiiFaultTolerantWriteGuid PPI to inform the check for FTW last write data has been done.
|
---|
5 | #
|
---|
6 | # Copyright (c) 2013 - 2018, Intel Corporation. All rights reserved.<BR>
|
---|
7 | #
|
---|
8 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
9 | #
|
---|
10 | ##
|
---|
11 |
|
---|
12 | [Defines]
|
---|
13 | INF_VERSION = 0x00010005
|
---|
14 | BASE_NAME = FaultTolerantWritePei
|
---|
15 | MODULE_UNI_FILE = FaultTolerantWritePei.uni
|
---|
16 | FILE_GUID = AAC33064-9ED0-4b89-A5AD-3EA767960B22
|
---|
17 | MODULE_TYPE = PEIM
|
---|
18 | VERSION_STRING = 1.0
|
---|
19 | ENTRY_POINT = PeimFaultTolerantWriteInitialize
|
---|
20 |
|
---|
21 | #
|
---|
22 | # The following information is for reference only and not required by the build tools.
|
---|
23 | #
|
---|
24 | # VALID_ARCHITECTURES = IA32 X64 EBC
|
---|
25 | #
|
---|
26 |
|
---|
27 | [Sources]
|
---|
28 | FaultTolerantWritePei.c
|
---|
29 |
|
---|
30 | [Packages]
|
---|
31 | MdePkg/MdePkg.dec
|
---|
32 | MdeModulePkg/MdeModulePkg.dec
|
---|
33 |
|
---|
34 | [LibraryClasses]
|
---|
35 | PeimEntryPoint
|
---|
36 | PeiServicesLib
|
---|
37 | BaseLib
|
---|
38 | DebugLib
|
---|
39 | HobLib
|
---|
40 | BaseMemoryLib
|
---|
41 | PcdLib
|
---|
42 | SafeIntLib
|
---|
43 | VariableFlashInfoLib
|
---|
44 |
|
---|
45 | [Guids]
|
---|
46 | ## SOMETIMES_PRODUCES ## HOB
|
---|
47 | ## PRODUCES ## GUID # Install ppi
|
---|
48 | gEdkiiFaultTolerantWriteGuid
|
---|
49 | gEdkiiWorkingBlockSignatureGuid ## SOMETIMES_CONSUMES ## GUID
|
---|
50 | gEfiSystemNvDataFvGuid ## SOMETIMES_CONSUMES ## GUID
|
---|
51 |
|
---|
52 | [Depex]
|
---|
53 | TRUE
|
---|
54 |
|
---|
55 | [UserExtensions.TianoCore."ExtraFiles"]
|
---|
56 | FaultTolerantWritePeiExtra.uni
|
---|
Note:
See
TracBrowser
for help on using the repository browser.