1 | ## @file
|
---|
2 | # Pei Crc32 Guided Section Extract library.
|
---|
3 | #
|
---|
4 | # This library doesn't produce any library class. The constructor function uses
|
---|
5 | # ExtractGuidedSectionLib service to register CRC32 guided section handler
|
---|
6 | # that parses CRC32 encapsulation section and extracts raw data.
|
---|
7 | #
|
---|
8 | # Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
|
---|
9 | #
|
---|
10 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
11 | #
|
---|
12 | ##
|
---|
13 |
|
---|
14 | [Defines]
|
---|
15 | INF_VERSION = 0x00010005
|
---|
16 | BASE_NAME = PeiCrc32GuidedSectionExtractLib
|
---|
17 | FILE_GUID = 1EBE57F5-BE42-45f0-A1F9-FA3DC633910B
|
---|
18 | MODULE_TYPE = PEIM
|
---|
19 | VERSION_STRING = 1.0
|
---|
20 | LIBRARY_CLASS = NULL|PEI_CORE PEIM
|
---|
21 | CONSTRUCTOR = PeiCrc32GuidedSectionExtractLibConstructor
|
---|
22 | MODULE_UNI_FILE = PeiCrc32GuidedSectionExtractLib.uni
|
---|
23 |
|
---|
24 | #
|
---|
25 | # The following information is for reference only and not required by the build tools.
|
---|
26 | #
|
---|
27 | # VALID_ARCHITECTURES = IA32 X64 EBC (EBC is for build only)
|
---|
28 | #
|
---|
29 |
|
---|
30 | [Sources]
|
---|
31 | PeiCrc32GuidedSectionExtractLib.c
|
---|
32 |
|
---|
33 | [Packages]
|
---|
34 | MdePkg/MdePkg.dec
|
---|
35 | MdeModulePkg/MdeModulePkg.dec
|
---|
36 |
|
---|
37 | [LibraryClasses]
|
---|
38 | ExtractGuidedSectionLib
|
---|
39 | DebugLib
|
---|
40 | BaseMemoryLib
|
---|
41 | BaseLib
|
---|
42 |
|
---|
43 | [Guids]
|
---|
44 | gEfiCrc32GuidedSectionExtractionGuid ## PRODUCES ## UNDEFINED
|
---|