2010-02-24 01:21:16 +01:00
|
|
|
## @file
|
2008-05-20 09:26:10 +02:00
|
|
|
#
|
2009-06-25 10:40:49 +02:00
|
|
|
# Section Extraction Dxe Driver produces framework section extract protocol.
|
|
|
|
#
|
|
|
|
# The section is implemented as a linked list of section streams,
|
|
|
|
# where each stream contains a linked list of children, which may be leaves or
|
|
|
|
# encapsulations. Encapsulation section will further generate new section stream entries.
|
2008-05-20 09:26:10 +02:00
|
|
|
#
|
2010-02-24 01:21:16 +01:00
|
|
|
# Copyright (c) 2006 - 2010, Intel Corporation. <BR>
|
2007-12-10 04:47:56 +01:00
|
|
|
# All rights reserved. This program and the accompanying materials
|
|
|
|
# are licensed and made available under the terms and conditions of the BSD License
|
2008-05-20 09:26:10 +02:00
|
|
|
# which accompanies this distribution. The full text of the license may be found at
|
2007-12-10 04:47:56 +01:00
|
|
|
# http://opensource.org/licenses/bsd-license.php
|
2008-05-20 09:26:10 +02:00
|
|
|
#
|
2007-12-10 04:47:56 +01:00
|
|
|
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
2008-05-20 09:26:10 +02:00
|
|
|
#
|
2010-02-24 01:21:16 +01:00
|
|
|
##
|
2007-12-10 04:47:56 +01:00
|
|
|
|
|
|
|
[Defines]
|
|
|
|
INF_VERSION = 0x00010005
|
|
|
|
BASE_NAME = SectionExtractionDxe
|
|
|
|
FILE_GUID = 801ADCA0-815E-46a4-84F7-657F53621A57
|
|
|
|
MODULE_TYPE = DXE_DRIVER
|
|
|
|
VERSION_STRING = 1.0
|
2009-04-23 11:09:56 +02:00
|
|
|
ENTRY_POINT = SectionExtractionEntryPoint
|
2009-06-25 10:40:49 +02:00
|
|
|
|
2009-04-23 11:09:56 +02:00
|
|
|
# The following information is for reference only and not required by the build tools.
|
|
|
|
#
|
|
|
|
# VALID_ARCHITECTURES = IA32 X64 IPF EBC
|
|
|
|
#
|
2007-12-10 04:47:56 +01:00
|
|
|
|
|
|
|
[Sources]
|
|
|
|
SectionExtraction.c
|
|
|
|
|
|
|
|
[LibraryClasses]
|
|
|
|
UefiBootServicesTableLib
|
|
|
|
MemoryAllocationLib
|
|
|
|
DebugLib
|
|
|
|
BaseLib
|
|
|
|
BaseMemoryLib
|
|
|
|
UefiDriverEntryPoint
|
|
|
|
|
|
|
|
[Packages]
|
|
|
|
MdePkg/MdePkg.dec
|
|
|
|
IntelFrameworkPkg/IntelFrameworkPkg.dec
|
|
|
|
|
|
|
|
[Protocols]
|
2009-06-25 10:40:49 +02:00
|
|
|
gEfiSectionExtractionProtocolGuid ## PRODUCEDS
|
|
|
|
gEfiDecompressProtocolGuid ## CONSUMEDS
|
2007-12-10 04:47:56 +01:00
|
|
|
|
|
|
|
[Depex]
|
2009-06-25 10:40:49 +02:00
|
|
|
gEfiDecompressProtocolGuid
|
|
|
|
|
|
|
|
|