]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkModulePkg/Universal/SectionExtractionDxe/SectionExtractionDxe.inf
1. Correct File header to ## @file
[mirror_edk2.git] / IntelFrameworkModulePkg / Universal / SectionExtractionDxe / SectionExtractionDxe.inf
1 ## @file
2 #
3 # Section Extraction Dxe Driver produces framework section extract protocol.
4 #
5 # The section is implemented as a linked list of section streams,
6 # where each stream contains a linked list of children, which may be leaves or
7 # encapsulations. Encapsulation section will further generate new section stream entries.
8 #
9 # Copyright (c) 2006 - 2010, Intel Corporation. <BR>
10 # All rights reserved. This program and the accompanying materials
11 # are licensed and made available under the terms and conditions of the BSD License
12 # which accompanies this distribution. The full text of the license may be found at
13 # http://opensource.org/licenses/bsd-license.php
14 #
15 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
16 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
17 #
18 ##
19
20 [Defines]
21 INF_VERSION = 0x00010005
22 BASE_NAME = SectionExtractionDxe
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
44 [Packages]
45 MdePkg/MdePkg.dec
46 IntelFrameworkPkg/IntelFrameworkPkg.dec
47
48 [Protocols]
49 gEfiSectionExtractionProtocolGuid ## PRODUCEDS
50 gEfiDecompressProtocolGuid ## CONSUMEDS
51
52 [Depex]
53 gEfiDecompressProtocolGuid
54
55