1## @file
2#  Section Extraction Dxe Driver produces framework section extract protocol.
3#
4#  The section is implemented as a linked list of section streams,
5#  where each stream contains a linked list of children, which may be leaves or
6#  encapsulations. Encapsulation section will further generate new section stream entries.
7#
8#  Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR>
9#  This program and the accompanying materials
10#  are licensed and made available under the terms and conditions of the BSD License
11#  which accompanies this distribution.  The 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                      = SectionExtractionDxe
22  MODULE_UNI_FILE                = SectionExtractionDxe.uni
23  FILE_GUID                      = 801ADCA0-815E-46a4-84F7-657F53621A57
24  MODULE_TYPE                    = DXE_DRIVER
25  VERSION_STRING                 = 1.0
26  ENTRY_POINT                    = SectionExtractionEntryPoint
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  SectionExtraction.c
35
36[LibraryClasses]
37  UefiBootServicesTableLib
38  MemoryAllocationLib
39  DebugLib
40  BaseLib
41  BaseMemoryLib
42  UefiDriverEntryPoint
43  UefiLib
44
45[Packages]
46  MdePkg/MdePkg.dec
47  IntelFrameworkPkg/IntelFrameworkPkg.dec
48
49[Protocols]
50  gEfiSectionExtractionProtocolGuid    ## PRODUCES
51  gEfiDecompressProtocolGuid           ## SOMETIMES_CONSUMES
52
53[Depex]
54  gEfiDecompressProtocolGuid
55
56[UserExtensions.TianoCore."ExtraFiles"]
57  SectionExtractionDxeExtra.uni
58