diff options
author | Ard Biesheuvel <ard.biesheuvel@linaro.org> | 2017-11-30 15:09:48 +0000 |
---|---|---|
committer | Ard Biesheuvel <ard.biesheuvel@linaro.org> | 2017-11-30 17:05:30 +0000 |
commit | 6efd58aa5c1ac3b7f3c753bb30684547fffad9c1 (patch) | |
tree | fd7113926afaf9724f5e3d5b9c9dcd8bb061c09e /ArmPlatformPkg/PrePi | |
parent | 2dd8fd8f7e3b7647f3dd6461d15f2ccf27bf18d2 (diff) | |
download | edk2-6efd58aa5c1ac3b7f3c753bb30684547fffad9c1.tar.gz edk2-6efd58aa5c1ac3b7f3c753bb30684547fffad9c1.tar.bz2 edk2-6efd58aa5c1ac3b7f3c753bb30684547fffad9c1.zip |
ArmPlatformPkg/PrePi: call all constructors by hand
Call ProcessLibraryConstructorList () to invoke all library constructors
by hand rather than calling only some of them explicitly.
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>
Diffstat (limited to 'ArmPlatformPkg/PrePi')
-rw-r--r-- | ArmPlatformPkg/PrePi/PrePi.c | 15 | ||||
-rw-r--r-- | ArmPlatformPkg/PrePi/PrePi.h | 6 |
2 files changed, 7 insertions, 14 deletions
diff --git a/ArmPlatformPkg/PrePi/PrePi.c b/ArmPlatformPkg/PrePi/PrePi.c index e5016ea453..221bad55a3 100644 --- a/ArmPlatformPkg/PrePi/PrePi.c +++ b/ArmPlatformPkg/PrePi/PrePi.c @@ -37,18 +37,6 @@ UINT64 mSystemMemoryEnd = FixedPcdGet64(PcdSystemMemoryBase) + FixedPcdGet64(PcdSystemMemorySize) - 1;
EFI_STATUS
-EFIAPI
-ExtractGuidedSectionLibConstructor (
- VOID
- );
-
-EFI_STATUS
-EFIAPI
-LzmaDecompressLibConstructor (
- VOID
- );
-
-EFI_STATUS
GetPlatformPpi (
IN EFI_GUID *PpiGuid,
OUT VOID **Ppi
@@ -165,8 +153,7 @@ PrePiMain ( PERF_START (NULL, "PEI", NULL, StartTimeStamp);
// SEC phase needs to run library constructors by hand.
- ExtractGuidedSectionLibConstructor ();
- LzmaDecompressLibConstructor ();
+ ProcessLibraryConstructorList ();
// Build HOBs to pass up our version of stuff the DXE Core needs to save space
BuildPeCoffLoaderHob ();
diff --git a/ArmPlatformPkg/PrePi/PrePi.h b/ArmPlatformPkg/PrePi/PrePi.h index e7f58e5924..39b11eba59 100644 --- a/ArmPlatformPkg/PrePi/PrePi.h +++ b/ArmPlatformPkg/PrePi/PrePi.h @@ -87,4 +87,10 @@ ArchInitialize ( VOID
);
+VOID
+EFIAPI
+ProcessLibraryConstructorList (
+ VOID
+ );
+
#endif /* _PREPI_H_ */
|