diff options
author | Yao, Jiewen <Jiewen.Yao@intel.com> | 2015-04-23 08:53:39 +0000 |
---|---|---|
committer | jyao1 <jyao1@Edk2> | 2015-04-23 08:53:39 +0000 |
commit | 88a539ca5f791000a1d033fbcf9c6c01ad9b9fe0 (patch) | |
tree | 02bf24b4aa64829f17052e04c1dd2480ee209729 /IntelFspWrapperPkg/Library/BaseFspPlatformInfoLibSample/FspPlatformInfoLibSample.c | |
parent | 9da591867c0bad1abbe17a321dc5b16d95226c6a (diff) | |
download | edk2-platforms-88a539ca5f791000a1d033fbcf9c6c01ad9b9fe0.tar.xz |
IntelFspWrapperPkg update for FSP1.1
-- Add BootLoaderTolumSize support
-- Fix LibraryClasses declaration in DEC file.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: "Yao, Jiewen" <Jiewen.Yao@intel.com>
Reviewed-by: "Ma, Maurice" <maurice.ma@intel.com>
Reviewed-by: "Rangarajan, Ravi P" <ravi.p.rangarajan@intel.com>
Reviewed-by: "Mudusuru, Giri P" <giri.p.mudusuru@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17197 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'IntelFspWrapperPkg/Library/BaseFspPlatformInfoLibSample/FspPlatformInfoLibSample.c')
-rw-r--r-- | IntelFspWrapperPkg/Library/BaseFspPlatformInfoLibSample/FspPlatformInfoLibSample.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/IntelFspWrapperPkg/Library/BaseFspPlatformInfoLibSample/FspPlatformInfoLibSample.c b/IntelFspWrapperPkg/Library/BaseFspPlatformInfoLibSample/FspPlatformInfoLibSample.c index d21c5665d9..903e26eefa 100644 --- a/IntelFspWrapperPkg/Library/BaseFspPlatformInfoLibSample/FspPlatformInfoLibSample.c +++ b/IntelFspWrapperPkg/Library/BaseFspPlatformInfoLibSample/FspPlatformInfoLibSample.c @@ -83,6 +83,22 @@ UpdateFspUpdConfigs ( }
/**
+ Get BootLoader Tolum size.
+
+ @note At this point, memory is NOT ready, PeiServices are available to use.
+
+ @return BootLoader Tolum size.
+**/
+UINT32
+EFIAPI
+GetBootLoaderTolumSize (
+ VOID
+ )
+{
+ return 0;
+}
+
+/**
Get TempRamExit parameter.
@note At this point, memory is ready, PeiServices are available to use.
|