2011-09-02 13:34:35 +02:00
|
|
|
## @file
|
2014-08-28 08:34:06 +02:00
|
|
|
# CapsuleX64 module handles >4GB capsule blocks.
|
2011-09-02 13:34:35 +02:00
|
|
|
#
|
|
|
|
# The X64 entrypoint to process capsule in long mode.
|
|
|
|
# This module is built as X64.
|
|
|
|
#
|
2012-06-12 10:28:43 +02:00
|
|
|
# Caution: This module requires additional review when modified.
|
|
|
|
# This driver will have external input - capsule image.
|
|
|
|
# This external input must be validated carefully to avoid security issue like
|
|
|
|
# buffer overflow, integer overflow.
|
|
|
|
#
|
2018-06-04 07:35:58 +02:00
|
|
|
# Copyright (c) 2011 - 2018, Intel Corporation. All rights reserved.<BR>
|
2011-09-02 13:34:35 +02:00
|
|
|
#
|
2019-04-04 01:05:13 +02:00
|
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
2011-09-02 13:34:35 +02:00
|
|
|
#
|
|
|
|
##
|
|
|
|
|
|
|
|
[Defines]
|
|
|
|
INF_VERSION = 0x00010005
|
|
|
|
BASE_NAME = CapsuleX64
|
2014-08-28 08:34:06 +02:00
|
|
|
MODULE_UNI_FILE = CapsuleX64.uni
|
2011-09-02 13:34:35 +02:00
|
|
|
FILE_GUID = F7FDE4A6-294C-493c-B50F-9734553BB757
|
|
|
|
MODULE_TYPE = PEIM
|
|
|
|
VERSION_STRING = 1.0
|
|
|
|
|
|
|
|
#
|
|
|
|
# The following information is for reference only and not required by the build tools.
|
|
|
|
#
|
|
|
|
# VALID_ARCHITECTURES = X64
|
|
|
|
#
|
|
|
|
|
|
|
|
[Sources]
|
|
|
|
X64/X64Entry.c
|
2016-05-31 03:52:18 +02:00
|
|
|
X64/PageFaultHandler.nasm
|
2011-09-02 13:34:35 +02:00
|
|
|
Common/CapsuleCoalesce.c
|
2019-08-08 05:12:04 +02:00
|
|
|
Common/CommonHeader.h
|
2011-09-02 13:34:35 +02:00
|
|
|
|
|
|
|
[Packages]
|
|
|
|
MdePkg/MdePkg.dec
|
|
|
|
MdeModulePkg/MdeModulePkg.dec
|
|
|
|
|
|
|
|
[LibraryClasses]
|
|
|
|
BaseLib
|
|
|
|
DebugLib
|
2012-03-15 06:20:41 +01:00
|
|
|
CpuExceptionHandlerLib
|
2012-08-27 10:36:23 +02:00
|
|
|
DebugAgentLib
|
2011-09-02 13:34:35 +02:00
|
|
|
|
|
|
|
[Depex]
|
|
|
|
FALSE
|
|
|
|
|
2014-08-28 08:34:06 +02:00
|
|
|
[UserExtensions.TianoCore."ExtraFiles"]
|
|
|
|
CapsuleX64Extra.uni
|