1 | ## @file
|
---|
2 | # Dxe 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 | # It uses UEFI boot service CalculateCrc32 to authenticate 32 bit CRC value.
|
---|
9 | #
|
---|
10 | # Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR>
|
---|
11 | #
|
---|
12 | # This program and the accompanying materials
|
---|
13 | # are licensed and made available under the terms and conditions of the BSD License
|
---|
14 | # which accompanies this distribution. The full text of the license may be found at
|
---|
15 | # http://opensource.org/licenses/bsd-license.php
|
---|
16 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
---|
17 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
---|
18 | #
|
---|
19 | ##
|
---|
20 |
|
---|
21 | [Defines]
|
---|
22 | INF_VERSION = 0x00010005
|
---|
23 | BASE_NAME = DxeCrc32GuidedSectionExtractLib
|
---|
24 | MODULE_UNI_FILE = DxeCrc32GuidedSectionExtractLib.uni
|
---|
25 | FILE_GUID = 387A2490-81FC-4E7C-8E0A-3E58C30FCD0B
|
---|
26 | MODULE_TYPE = DXE_DRIVER
|
---|
27 | VERSION_STRING = 1.0
|
---|
28 | LIBRARY_CLASS = NULL|DXE_CORE DXE_DRIVER DXE_RUNTIME_DRIVER DXE_SAL_DRIVER DXE_SMM_DRIVER UEFI_APPLICATION UEFI_DRIVER
|
---|
29 |
|
---|
30 | CONSTRUCTOR = DxeCrc32GuidedSectionExtractLibConstructor
|
---|
31 |
|
---|
32 | #
|
---|
33 | # The following information is for reference only and not required by the build tools.
|
---|
34 | #
|
---|
35 | # VALID_ARCHITECTURES = IA32 X64 IPF EBC
|
---|
36 | #
|
---|
37 |
|
---|
38 | [Sources]
|
---|
39 | DxeCrc32GuidedSectionExtractLib.c
|
---|
40 |
|
---|
41 | [Packages]
|
---|
42 | MdePkg/MdePkg.dec
|
---|
43 | MdeModulePkg/MdeModulePkg.dec
|
---|
44 |
|
---|
45 | [LibraryClasses]
|
---|
46 | ExtractGuidedSectionLib
|
---|
47 | UefiBootServicesTableLib
|
---|
48 | DebugLib
|
---|
49 | BaseMemoryLib
|
---|
50 |
|
---|
51 | [Guids]
|
---|
52 | gEfiCrc32GuidedSectionExtractionGuid ## PRODUCES ## UNDEFINED
|
---|
53 |
|
---|
54 | [Protocols]
|
---|
55 | gEfiSecurityPolicyProtocolGuid ## SOMETIMES_CONSUMES # Set platform override AUTH status if exist
|
---|