mirror of
https://github.com/acidanthera/audk.git
synced 2025-08-15 06:38:08 +02:00
This commit oves StackCheckLib from a NULL lib to an instance of StackCheckLib. This requires every entry point to add a library dependency on StackCheckLib. It also requires every SEC module to have a dependency on StackCheckLib because there is no standard SEC entry point. It allows for greater flexibility for a platform to apply stack cookies and simplifies DSC logic. Continuous-integration-options: PatchCheck.ignore-multi-package Signed-off-by: Oliver Smith-Denny <osde@microsoft.com>
34 lines
809 B
INI
34 lines
809 B
INI
## @file
|
|
# Module entry point library for Standalone MM core.
|
|
#
|
|
# Copyright (c) 2017 - 2021, Arm Ltd. All rights reserved.<BR>
|
|
#
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
#
|
|
#
|
|
##
|
|
|
|
[Defines]
|
|
INF_VERSION = 0x0001001A
|
|
BASE_NAME = StandaloneMmCoreEntryPoint
|
|
FILE_GUID = 6D1B60B2-5DD1-4523-8F0A-607DB4D6B0CE
|
|
MODULE_TYPE = MM_CORE_STANDALONE
|
|
VERSION_STRING = 1.0
|
|
PI_SPECIFICATION_VERSION = 0x00010032
|
|
LIBRARY_CLASS = StandaloneMmCoreEntryPoint|MM_CORE_STANDALONE
|
|
|
|
#
|
|
# VALID_ARCHITECTURES = X64
|
|
#
|
|
|
|
[Sources.X64]
|
|
X64/StandaloneMmCoreEntryPoint.c
|
|
|
|
[Packages]
|
|
MdePkg/MdePkg.dec
|
|
|
|
[LibraryClasses]
|
|
BaseLib
|
|
DebugLib
|
|
StackCheckLib
|