Files
edk2-upstream/PrmPkg/Samples/PrmSampleAcpiParameterBufferModule/PrmSampleAcpiParameterBufferModule.inf
Michael D Kinney 12a908e09c PrmPkg/Samples: Update INF files for GCC/CLANG
* Remove redundant /DLL option from MSFT
* Use VERSION_STRING from [Defines] section to set
  the PE/COFF optional header image version fields.
  The use of the MSFT linker /VERSION option is
  removed and replaced with the GenFw --image-version
  option to use same method for all tool chains and
  provide better error checking.
* Add CLANGPDB tool chain family support that matches
  MSFT settings.
* Add GCC family tool chain support that overrides
  OBJCOPY_STRIPFLAGS to nothing to prevent symbols
  from being stripped from PRM Modules so the
  PRM Export Descriptor Structure can be found by
  GENFW when the --prm option is used.
* Remove all -Wl, options that are not compatible
  across all support tool chains. This also removes
  the need to list the PRM Export Descriptor Structure
  and PRM Handler APIs in the INF file and instead
  depend in GENFW with --prm option to find these
  symbols and generate the PE/COFF DLL export section.

Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com>
2025-10-17 06:23:17 +00:00

50 lines
1.5 KiB
INI

## @file
# Sample PRM Driver
#
# A sample PRM Module implementation. This PRM Module includes a PRM Module configuration library instance
# that applies the configuration for an ACPI parameter buffer in the boot environment. A PRM handler
# is provided that checks for a specific value in the parameter buffer that should be provided by ACPI
# code at OS runtime.
#
# Copyright (c) Microsoft Corporation
# Copyright (c) 2022, Arm Limited. All rights reserved.<BR>
# Copyright (C) 2025, Advanced Micro Devices, Inc. All rights reserved.
#
# SPDX-License-Identifier: BSD-2-Clause-Patent
#
##
[Defines]
INF_VERSION = 0x00010005
BASE_NAME = PrmSampleAcpiParameterBufferModule
FILE_GUID = DC2A58A6-5927-4776-B995-D118A27335A2
MODULE_TYPE = DXE_RUNTIME_DRIVER
VERSION_STRING = 1.0
ENTRY_POINT = PrmSampleAcpiParameterBufferModuleInit
[Sources]
PrmSampleAcpiParameterBufferModule.c
[Packages]
MdePkg/MdePkg.dec
PrmPkg/PrmPkg.dec
[LibraryClasses]
BaseLib
DebugLib
UefiDriverEntryPoint
UefiLib
[Depex]
TRUE
[BuildOptions]
MSFT:*_*_*_DLINK_FLAGS = /SUBSYSTEM:CONSOLE /VERSION:$(VERSION_STRING)
MSFT:*_*_*_GENFW_FLAGS = --keepoptionalheader
CLANGPDB:*_*_*_DLINK_FLAGS = /SUBSYSTEM:CONSOLE /VERSION:$(VERSION_STRING)
CLANGPDB:*_*_*_GENFW_FLAGS = --keepoptionalheader
GCC:*_*_*_GENFW_FLAGS = --prm --image-version $(VERSION_STRING)
GCC:*_*_*_OBJCOPY_STRIPFLAG ==