mirror of https://github.com/acidanthera/audk.git
42 lines
1.1 KiB
INI
42 lines
1.1 KiB
INI
## @file
|
|
# Sample PRM Driver
|
|
#
|
|
# This driver simply uses an OS-provided debug message print service to write
|
|
# a debug message. Three PRM handlers are provided that each print a unique
|
|
# debug message.
|
|
#
|
|
# Copyright (c) 2020, Intel Corporation. All rights reserved.<BR>
|
|
# Copyright (c) Microsoft Corporation
|
|
#
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
#
|
|
##
|
|
|
|
[Defines]
|
|
INF_VERSION = 0x00010005
|
|
BASE_NAME = PrmSamplePrintModule
|
|
FILE_GUID = 1652B3C2-A7A1-46AC-AF93-DD6DEE446669
|
|
MODULE_TYPE = DXE_RUNTIME_DRIVER
|
|
VERSION_STRING = 1.0
|
|
ENTRY_POINT = PrmSamplePrintModuleInit
|
|
|
|
[Sources]
|
|
PrmSamplePrintModule.c
|
|
|
|
[Packages]
|
|
MdePkg/MdePkg.dec
|
|
MdeModulePkg/MdeModulePkg.dec
|
|
PrmPkg/PrmPkg.dec
|
|
|
|
[LibraryClasses]
|
|
BaseLib
|
|
UefiDriverEntryPoint
|
|
UefiLib
|
|
|
|
[Depex]
|
|
TRUE
|
|
|
|
[BuildOptions.common]
|
|
MSFT:*_*_*_DLINK_FLAGS = /DLL /SUBSYSTEM:CONSOLE /VERSION:1.0
|
|
MSFT:*_*_*_GENFW_FLAGS = --keepoptionalheader
|