• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1## @file
2# Recovery module.
3#
4# Load Recovery capsule and install FV.
5#
6# Copyright (c) 2016, Intel Corporation. All rights reserved.<BR>
7#
8#  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#  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
13#  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
14#
15#
16##
17
18[Defines]
19  INF_VERSION                    = 0x00010005
20  BASE_NAME                      = RecoveryModuleLoadPei
21  MODULE_UNI_FILE                = RecoveryModuleLoadPei.uni
22  FILE_GUID                      = 4278A574-4769-4D60-B090-DD4916691590
23  MODULE_TYPE                    = PEIM
24  VERSION_STRING                 = 1.0
25  ENTRY_POINT                    = InitializeRecoveryModule
26
27#
28# The following information is for reference only and not required by the build tools.
29#
30#  VALID_ARCHITECTURES           = IA32 X64 IPF EBC
31#
32
33[Sources]
34  RecoveryModuleLoadPei.h
35  RecoveryModuleLoadPei.c
36  ParseConfigProfile.c
37
38[Packages]
39  MdePkg/MdePkg.dec
40  MdeModulePkg/MdeModulePkg.dec
41  SignedCapsulePkg/SignedCapsulePkg.dec
42
43[LibraryClasses]
44  PeimEntryPoint
45  DebugLib
46  HobLib
47  BaseMemoryLib
48  MemoryAllocationLib
49  EdkiiSystemCapsuleLib
50  IniParsingLib
51  PrintLib
52
53[Ppis]
54  gEfiPeiRecoveryModulePpiGuid            ## PRODUCES
55  gEfiPeiDeviceRecoveryModulePpiGuid      ## CONSUMES
56
57[Guids]
58  gEfiFmpCapsuleGuid                      ## SOMETIMES_CONSUMES ## GUID
59
60[Pcd]
61  gEfiMdeModulePkgTokenSpaceGuid.PcdSystemFmpCapsuleImageTypeIdGuid  ## CONSUMES
62  gEfiSignedCapsulePkgTokenSpaceGuid.PcdEdkiiSystemFirmwareFileGuid  ## CONSUMES
63
64[FeaturePcd]
65  gEfiMdeModulePkgTokenSpaceGuid.PcdFrameworkCompatibilitySupport         ## CONSUMES
66
67[depex]
68  gEfiPeiBootInRecoveryModePpiGuid
69
70[UserExtensions.TianoCore."ExtraFiles"]
71  RecoveryModuleLoadPeiExtra.uni
72
73