1 | ## @file
|
---|
2 | # Instance of ExtractGuidedSection Library for DXE phase.
|
---|
3 | #
|
---|
4 | # This library provides generic extract guided section functions for DXE module.
|
---|
5 | #
|
---|
6 | # Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>
|
---|
7 | #
|
---|
8 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
9 | #
|
---|
10 | #
|
---|
11 | ##
|
---|
12 |
|
---|
13 | [Defines]
|
---|
14 | INF_VERSION = 0x00010005
|
---|
15 | BASE_NAME = DxeExtractGuidedSectionLib
|
---|
16 | MODULE_UNI_FILE = DxeExtractGuidedSectionLib.uni
|
---|
17 | FILE_GUID = f773469b-e265-4b0c-b0a6-2f971fbfe72b
|
---|
18 | MODULE_TYPE = DXE_DRIVER
|
---|
19 | VERSION_STRING = 1.0
|
---|
20 | LIBRARY_CLASS = ExtractGuidedSectionLib|DXE_CORE DXE_DRIVER DXE_RUNTIME_DRIVER DXE_SMM_DRIVER UEFI_APPLICATION UEFI_DRIVER
|
---|
21 |
|
---|
22 | CONSTRUCTOR = DxeExtractGuidedSectionLibConstructor
|
---|
23 |
|
---|
24 | #
|
---|
25 | # The following information is for reference only and not required by the build tools.
|
---|
26 | #
|
---|
27 | # VALID_ARCHITECTURES = IA32 X64 EBC
|
---|
28 | #
|
---|
29 |
|
---|
30 | [Sources]
|
---|
31 | DxeExtractGuidedSectionLib.c
|
---|
32 |
|
---|
33 | [Packages]
|
---|
34 | MdePkg/MdePkg.dec
|
---|
35 |
|
---|
36 |
|
---|
37 | [LibraryClasses]
|
---|
38 | MemoryAllocationLib
|
---|
39 | BaseMemoryLib
|
---|
40 | DebugLib
|
---|
41 | UefiBootServicesTableLib
|
---|
42 |
|
---|