diff options
author | mdkinney <mdkinney@6f19259b-4bc3-4df7-8a09-765794883524> | 2010-12-18 00:10:30 +0000 |
---|---|---|
committer | mdkinney <mdkinney@6f19259b-4bc3-4df7-8a09-765794883524> | 2010-12-18 00:10:30 +0000 |
commit | 5bd2d2cb03a29e0769a96d35ad24af46c925c6e0 (patch) | |
tree | 7a0399ac4a81ce84c7e4e60741d5358d38fd98a1 /MdePkg/Library | |
parent | 5b987044136b62babc0d2022c28d51f247aa663d (diff) | |
download | edk2-5bd2d2cb03a29e0769a96d35ad24af46c925c6e0.tar.gz edk2-5bd2d2cb03a29e0769a96d35ad24af46c925c6e0.tar.bz2 edk2-5bd2d2cb03a29e0769a96d35ad24af46c925c6e0.zip |
Add an empty CONSTRUCTOR to the UefiLib to resolve library dependency issues.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11181 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library')
-rw-r--r-- | MdePkg/Library/UefiLib/UefiLib.c | 22 | ||||
-rw-r--r-- | MdePkg/Library/UefiLib/UefiLib.inf | 1 |
2 files changed, 23 insertions, 0 deletions
diff --git a/MdePkg/Library/UefiLib/UefiLib.c b/MdePkg/Library/UefiLib/UefiLib.c index 61764ec89e..96dccb1477 100644 --- a/MdePkg/Library/UefiLib/UefiLib.c +++ b/MdePkg/Library/UefiLib/UefiLib.c @@ -20,6 +20,28 @@ #include "UefiLibInternal.h"
/**
+ Empty constructor function that is required to resolve dependencies between
+ libraries.
+
+ ** DO NOT REMOVE **
+
+ @param ImageHandle The firmware allocated handle for the EFI image.
+ @param SystemTable A pointer to the EFI System Table.
+
+ @retval EFI_SUCCESS The constructor executed correctly.
+
+**/
+EFI_STATUS
+EFIAPI
+UefiLibConstructor (
+ IN EFI_HANDLE ImageHandle,
+ IN EFI_SYSTEM_TABLE *SystemTable
+ )
+{
+ return EFI_SUCCESS;
+}
+
+/**
Compare whether two names of languages are identical.
@param Language1 Name of language 1.
diff --git a/MdePkg/Library/UefiLib/UefiLib.inf b/MdePkg/Library/UefiLib/UefiLib.inf index 606e0ca954..640a9f3a8e 100644 --- a/MdePkg/Library/UefiLib/UefiLib.inf +++ b/MdePkg/Library/UefiLib/UefiLib.inf @@ -26,6 +26,7 @@ MODULE_TYPE = UEFI_DRIVER
VERSION_STRING = 1.0
LIBRARY_CLASS = UefiLib|DXE_CORE DXE_DRIVER DXE_RUNTIME_DRIVER DXE_SAL_DRIVER DXE_SMM_DRIVER UEFI_APPLICATION UEFI_DRIVER SMM_CORE
+ CONSTRUCTOR = UefiLibConstructor
#
|