mirror of
https://github.com/acidanthera/audk.git
synced 2025-08-19 00:28:11 +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>
38 lines
806 B
INI
38 lines
806 B
INI
## @file
|
|
# Module entry point library for DXE core.
|
|
#
|
|
# Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>
|
|
#
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
#
|
|
#
|
|
##
|
|
|
|
[Defines]
|
|
INF_VERSION = 0x00010005
|
|
BASE_NAME = DxeCoreEntryPoint
|
|
MODULE_UNI_FILE = DxeCoreEntryPoint.uni
|
|
FILE_GUID = d258d6af-2fc0-4019-9c1f-1101c3dd19b5
|
|
MODULE_TYPE = DXE_CORE
|
|
VERSION_STRING = 1.0
|
|
LIBRARY_CLASS = DxeCoreEntryPoint|DXE_CORE
|
|
|
|
|
|
#
|
|
# VALID_ARCHITECTURES = IA32 X64 EBC (EBC is for build only)
|
|
#
|
|
|
|
[Sources]
|
|
DxeCoreEntryPoint.c
|
|
|
|
|
|
[Packages]
|
|
MdePkg/MdePkg.dec
|
|
|
|
|
|
[LibraryClasses]
|
|
BaseLib
|
|
DebugLib
|
|
StackCheckLib
|
|
|