mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-14 10:05:43 +01:00
d17d02b1f8
Add "-flto -DUSING_LTO" when DISABLE_LTO is not defined.
52 lines
1010 B
INI
52 lines
1010 B
INI
## @file
|
|
#
|
|
# Module Name:
|
|
#
|
|
# MsgLog.inf
|
|
#
|
|
# Abstract:
|
|
#
|
|
# MsgLog driver installs MsgLog protocol that can be used in all modules
|
|
# to keep a log that can be output to file later, at the finish of work.
|
|
#
|
|
# Slice 2012, initial idea comes from Kabyl
|
|
#
|
|
# have no idea about licenses. Keep copyright and use with any modifications.
|
|
#
|
|
##
|
|
|
|
[Defines]
|
|
INF_VERSION = 0x00010005
|
|
BASE_NAME = MsgLog
|
|
FILE_GUID = 511CE6CE-F27F-16EF-866C-FDF1019550B7
|
|
MODULE_TYPE = UEFI_DRIVER
|
|
VERSION_STRING = 1.0
|
|
ENTRY_POINT = MsgLogEntrypoint
|
|
|
|
[Packages]
|
|
CloverPkg.dec
|
|
MdePkg/MdePkg.dec
|
|
MdeModulePkg/MdeModulePkg.dec
|
|
|
|
[LibraryClasses]
|
|
BaseLib
|
|
UefiLib
|
|
UefiDriverEntryPoint
|
|
UefiBootServicesTableLib
|
|
UefiRuntimeServicesTableLib
|
|
BaseMemoryLib
|
|
MemoryAllocationLib
|
|
DebugLib
|
|
PrintLib
|
|
|
|
[Sources]
|
|
MsgLog.c
|
|
|
|
[Guids]
|
|
|
|
[Protocols]
|
|
gMsgLogProtocolGuid ## PRODUCES and CONSUMES
|
|
|
|
|
|
|