diff options
author | Song, BinX <binx.song@intel.com> | 2017-08-21 16:44:58 +0800 |
---|---|---|
committer | Jiewen Yao <jiewen.yao@intel.com> | 2017-08-25 14:32:50 +0800 |
commit | c69071bd7e21c24cfe9f4b49a0464acfb8b301d4 (patch) | |
tree | 3511d258878c22c9bc041e5fb52e191f4b1e1d1f /IntelFsp2Pkg | |
parent | 02739b0f41300da70369be7c1982180306e8ca95 (diff) | |
download | edk2-c69071bd7e21c24cfe9f4b49a0464acfb8b301d4.tar.gz edk2-c69071bd7e21c24cfe9f4b49a0464acfb8b301d4.tar.bz2 edk2-c69071bd7e21c24cfe9f4b49a0464acfb8b301d4.zip |
IntelFsp2Pkg: Fix build error with WHOLEARCHIVE option
Add empty TempRamInitApi function to fix
build error with WHOLEARCHIVE option
Cc: Jiewen Yao <jiewen.yao@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Bell Song <binx.song@intel.com>
Reviewed-by: Jiewen Yao <jiewen.yao@intel.com>
Diffstat (limited to 'IntelFsp2Pkg')
-rw-r--r-- | IntelFsp2Pkg/FspSecCore/Ia32/FspApiEntryM.nasm | 11 | ||||
-rw-r--r-- | IntelFsp2Pkg/FspSecCore/Ia32/FspApiEntryS.nasm | 11 |
2 files changed, 22 insertions, 0 deletions
diff --git a/IntelFsp2Pkg/FspSecCore/Ia32/FspApiEntryM.nasm b/IntelFsp2Pkg/FspSecCore/Ia32/FspApiEntryM.nasm index 9744e1682d..b56427670b 100644 --- a/IntelFsp2Pkg/FspSecCore/Ia32/FspApiEntryM.nasm +++ b/IntelFsp2Pkg/FspSecCore/Ia32/FspApiEntryM.nasm @@ -195,6 +195,17 @@ ASM_PFX(AsmGetPeiCoreOffset): ret
;----------------------------------------------------------------------------
+; TempRamInit API
+;
+; Empty function for WHOLEARCHIVE build option
+;
+;----------------------------------------------------------------------------
+global ASM_PFX(TempRamInitApi)
+ASM_PFX(TempRamInitApi):
+ jmp $
+ ret
+
+;----------------------------------------------------------------------------
; Module Entrypoint API
;----------------------------------------------------------------------------
global ASM_PFX(_ModuleEntryPoint)
diff --git a/IntelFsp2Pkg/FspSecCore/Ia32/FspApiEntryS.nasm b/IntelFsp2Pkg/FspSecCore/Ia32/FspApiEntryS.nasm index cdc1149d6c..16e6028a30 100644 --- a/IntelFsp2Pkg/FspSecCore/Ia32/FspApiEntryS.nasm +++ b/IntelFsp2Pkg/FspSecCore/Ia32/FspApiEntryS.nasm @@ -54,6 +54,17 @@ ASM_PFX(FspApiCommonContinue): ret
;----------------------------------------------------------------------------
+; TempRamInit API
+;
+; Empty function for WHOLEARCHIVE build option
+;
+;----------------------------------------------------------------------------
+global ASM_PFX(TempRamInitApi)
+ASM_PFX(TempRamInitApi):
+ jmp $
+ ret
+
+;----------------------------------------------------------------------------
; Module Entrypoint API
;----------------------------------------------------------------------------
global ASM_PFX(_ModuleEntryPoint)
|