Last change
on this file since 108794 was 108794, checked in by vboxsync, 2 weeks ago |
Devices/EFI/FirmwareNew: Merge edk2-stable202502 from the vendor branch and make it build for the important platforms, bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
1.5 KB
|
Line | |
---|
1 | ## @file
|
---|
2 | # CapsuleX64 module handles >4GB capsule blocks.
|
---|
3 | #
|
---|
4 | # The X64 entrypoint to process capsule in long mode.
|
---|
5 | # This module is built as X64.
|
---|
6 | #
|
---|
7 | # Caution: This module requires additional review when modified.
|
---|
8 | # This driver will have external input - capsule image.
|
---|
9 | # This external input must be validated carefully to avoid security issue like
|
---|
10 | # buffer overflow, integer overflow.
|
---|
11 | #
|
---|
12 | # Copyright (c) 2011 - 2018, Intel Corporation. All rights reserved.<BR>
|
---|
13 | #
|
---|
14 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
15 | #
|
---|
16 | ##
|
---|
17 |
|
---|
18 | [Defines]
|
---|
19 | INF_VERSION = 0x00010005
|
---|
20 | BASE_NAME = CapsuleX64
|
---|
21 | MODULE_UNI_FILE = CapsuleX64.uni
|
---|
22 | FILE_GUID = F7FDE4A6-294C-493c-B50F-9734553BB757
|
---|
23 | MODULE_TYPE = PEIM
|
---|
24 | VERSION_STRING = 1.0
|
---|
25 |
|
---|
26 | #
|
---|
27 | # The following information is for reference only and not required by the build tools.
|
---|
28 | #
|
---|
29 | # VALID_ARCHITECTURES = X64
|
---|
30 | #
|
---|
31 |
|
---|
32 | [Sources]
|
---|
33 | X64/X64Entry.c
|
---|
34 | X64/PageFaultHandler.nasm
|
---|
35 | Common/CapsuleCoalesce.c
|
---|
36 | Common/CommonHeader.h
|
---|
37 |
|
---|
38 | [Packages]
|
---|
39 | MdePkg/MdePkg.dec
|
---|
40 | MdeModulePkg/MdeModulePkg.dec
|
---|
41 |
|
---|
42 | [LibraryClasses]
|
---|
43 | BaseLib
|
---|
44 | DebugLib
|
---|
45 | CpuExceptionHandlerLib
|
---|
46 | DebugAgentLib
|
---|
47 | # CapsuleX64 implements its own _ModuleEntryPoint() and does not link against the standard PEIM entrypoint. As a
|
---|
48 | # result, it must include StackCheckLib to resolve the compiler inserted references to stack cookie functionality
|
---|
49 | StackCheckLib
|
---|
50 |
|
---|
51 | [Depex]
|
---|
52 | FALSE
|
---|
53 |
|
---|
54 | [UserExtensions.TianoCore."ExtraFiles"]
|
---|
55 | CapsuleX64Extra.uni
|
---|
Note:
See
TracBrowser
for help on using the repository browser.