1 | ## @file
|
---|
2 | # Component description file for Capsule module.
|
---|
3 | #
|
---|
4 | # Capsule update module supports EFI and UEFI.
|
---|
5 | #
|
---|
6 | # Copyright (c) 2006 - 2011, 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
|
---|
10 | # of the BSD License which accompanies this distribution. The
|
---|
11 | # full text of the license may be found at
|
---|
12 | # http://opensource.org/licenses/bsd-license.php
|
---|
13 | #
|
---|
14 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
---|
15 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
---|
16 | #
|
---|
17 | ##
|
---|
18 |
|
---|
19 | [Defines]
|
---|
20 | INF_VERSION = 0x00010005
|
---|
21 | BASE_NAME = CapsulePei
|
---|
22 | FILE_GUID = C779F6D8-7113-4AA1-9648-EB1633C7D53B
|
---|
23 | MODULE_TYPE = PEIM
|
---|
24 | VERSION_STRING = 1.0
|
---|
25 |
|
---|
26 | ENTRY_POINT = CapsuleMain
|
---|
27 |
|
---|
28 | #
|
---|
29 | # The following information is for reference only and not required by the build tools.
|
---|
30 | #
|
---|
31 | # VALID_ARCHITECTURES = IA32 X64 IPF EBC
|
---|
32 | #
|
---|
33 |
|
---|
34 | [Sources]
|
---|
35 | UefiCapsule.c
|
---|
36 | Capsule.h
|
---|
37 | Common/CapsuleCoalesce.c
|
---|
38 |
|
---|
39 | [Packages]
|
---|
40 | MdePkg/MdePkg.dec
|
---|
41 | MdeModulePkg/MdeModulePkg.dec
|
---|
42 |
|
---|
43 |
|
---|
44 | [LibraryClasses]
|
---|
45 | HobLib
|
---|
46 | BaseMemoryLib
|
---|
47 | PeiServicesLib
|
---|
48 | PeimEntryPoint
|
---|
49 | DebugLib
|
---|
50 | PeiServicesTablePointerLib
|
---|
51 | PrintLib
|
---|
52 | ReportStatusCodeLib
|
---|
53 |
|
---|
54 | [LibraryClasses.IA32]
|
---|
55 | PeCoffGetEntryPointLib
|
---|
56 | PcdLib
|
---|
57 |
|
---|
58 | [Guids]
|
---|
59 | gEfiCapsuleVendorGuid # ALWAYS_CONSUMED
|
---|
60 |
|
---|
61 | [Ppis]
|
---|
62 | gEfiPeiReadOnlyVariable2PpiGuid # PPI ALWAYS_CONSUMED
|
---|
63 | gPeiCapsulePpiGuid # PPI ALWAYS_CONSUMED
|
---|
64 |
|
---|
65 | [Ppis.IA32]
|
---|
66 | gEfiPeiLoadFilePpiGuid # PPI ALWAYS_CONSUMED
|
---|
67 |
|
---|
68 | [Pcd.IA32]
|
---|
69 | gEfiMdeModulePkgTokenSpaceGuid.PcdCapsuleCoalesceFile
|
---|
70 |
|
---|
71 | [Pcd.IA32]
|
---|
72 | gEfiMdeModulePkgTokenSpaceGuid.PcdUse1GPageTable
|
---|
73 |
|
---|
74 | [FeaturePcd.IA32]
|
---|
75 | gEfiMdeModulePkgTokenSpaceGuid.PcdDxeIplSwitchToLongMode
|
---|
76 |
|
---|
77 | [Depex]
|
---|
78 | gEfiPeiReadOnlyVariable2PpiGuid
|
---|
79 |
|
---|
80 |
|
---|