mirror of https://github.com/acidanthera/audk.git
MdeModulePkg: Add ImagePropertiesRecordLib
Create a library for manipulating image properties records. The library is currently blank and will be filled in a future patch to help with reviewer readability. Cc: Jian J Wang <jian.j.wang@intel.com> Cc: Liming Gao <gaoliming@byosoft.com.cn> Cc: Dandan Bi <dandan.bi@intel.com> Signed-off-by: Taylor Beebe <taylor.d.beebe@gmail.com> Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>
This commit is contained in:
parent
33e31c289c
commit
8bc44608b8
|
@ -0,0 +1,14 @@
|
|||
/** @file
|
||||
|
||||
Provides definitions and functionality for manipulating IMAGE_PROPERTIES_RECORD.
|
||||
|
||||
Copyright (c) 2016 - 2018, Intel Corporation. All rights reserved.<BR>
|
||||
Copyright (c) Microsoft Corporation.
|
||||
SPDX-License-Identifier: BSD-2-Clause-Patent
|
||||
|
||||
**/
|
||||
|
||||
#ifndef IMAGE_PROPERTIES_RECORD_SUPPORT_LIB_H_
|
||||
#define IMAGE_PROPERTIES_RECORD_SUPPORT_LIB_H_
|
||||
|
||||
#endif
|
|
@ -0,0 +1,9 @@
|
|||
/** @file
|
||||
|
||||
Provides definitions and functionality for manipulating IMAGE_PROPERTIES_RECORD.
|
||||
|
||||
Copyright (c) 2016 - 2018, Intel Corporation. All rights reserved.<BR>
|
||||
Copyright (c) Microsoft Corporation.
|
||||
SPDX-License-Identifier: BSD-2-Clause-Patent
|
||||
|
||||
**/
|
|
@ -0,0 +1,25 @@
|
|||
## @file
|
||||
# Provides definitions and functionality for manipulating
|
||||
# IMAGE_PROPERTIES_RECORD.
|
||||
#
|
||||
# Copyright (c) 2016 - 2018, Intel Corporation. All rights reserved.<BR>
|
||||
# Copyright (c) Microsoft Corporation.
|
||||
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
||||
#
|
||||
##
|
||||
|
||||
[Defines]
|
||||
INF_VERSION = 0x00010005
|
||||
BASE_NAME = ImagePropertiesRecordLib
|
||||
FILE_GUID = 5CCA36C1-C430-4A90-8BF7-23D2719D5928
|
||||
MODULE_TYPE = BASE
|
||||
VERSION_STRING = 1.0
|
||||
LIBRARY_CLASS = ImagePropertiesRecordLib
|
||||
|
||||
[Sources.common]
|
||||
ImagePropertiesRecordLib.c
|
||||
|
||||
|
||||
[Packages]
|
||||
MdePkg/MdePkg.dec
|
||||
MdeModulePkg/MdeModulePkg.dec
|
|
@ -164,6 +164,11 @@
|
|||
#
|
||||
VariableFlashInfoLib|Include/Library/VariableFlashInfoLib.h
|
||||
|
||||
## @libraryclass Memory Attribute Table support logic for tracking and reporting
|
||||
# runtime images
|
||||
#
|
||||
ImagePropertiesRecordLib|Include/Library/ImagePropertiesRecordLib.h
|
||||
|
||||
[Guids]
|
||||
## MdeModule package token space guid
|
||||
# Include/Guid/MdeModulePkgTokenSpace.h
|
||||
|
|
|
@ -96,6 +96,7 @@
|
|||
VarCheckLib|MdeModulePkg/Library/VarCheckLib/VarCheckLib.inf
|
||||
FileExplorerLib|MdeModulePkg/Library/FileExplorerLib/FileExplorerLib.inf
|
||||
NonDiscoverableDeviceRegistrationLib|MdeModulePkg/Library/NonDiscoverableDeviceRegistrationLib/NonDiscoverableDeviceRegistrationLib.inf
|
||||
ImagePropertiesRecordLib|MdeModulePkg/Library/ImagePropertiesRecordLib/ImagePropertiesRecordLib.inf
|
||||
|
||||
FmpAuthenticationLib|MdeModulePkg/Library/FmpAuthenticationLibNull/FmpAuthenticationLibNull.inf
|
||||
CapsuleLib|MdeModulePkg/Library/DxeCapsuleLibNull/DxeCapsuleLibNull.inf
|
||||
|
@ -237,6 +238,7 @@
|
|||
MdeModulePkg/Library/BaseHobLibNull/BaseHobLibNull.inf
|
||||
MdeModulePkg/Library/BaseMemoryAllocationLibNull/BaseMemoryAllocationLibNull.inf
|
||||
MdeModulePkg/Library/VariablePolicyHelperLib/VariablePolicyHelperLib.inf
|
||||
MdeModulePkg/Library/ImagePropertiesRecordLib/ImagePropertiesRecordLib.inf
|
||||
|
||||
MdeModulePkg/Bus/Pci/PciHostBridgeDxe/PciHostBridgeDxe.inf
|
||||
MdeModulePkg/Bus/Pci/PciSioSerialDxe/PciSioSerialDxe.inf
|
||||
|
|
Loading…
Reference in New Issue