summaryrefslogtreecommitdiffstats
path: root/IntelFspPkg/Library
diff options
context:
space:
mode:
authorShumin Qiu <shumin.qiu@intel.com>2015-01-19 07:18:24 +0000
committershenshushi <shenshushi@Edk2>2015-01-19 07:18:24 +0000
commitb34eb190837327224a46723051a587d98b3cabd3 (patch)
tree9f39cb08aed2304d37bbd0b4983bf0172294f65f /IntelFspPkg/Library
parentaaedfe3c126c434badb608284ad72d8a07ce162b (diff)
downloadedk2-b34eb190837327224a46723051a587d98b3cabd3.tar.gz
edk2-b34eb190837327224a46723051a587d98b3cabd3.tar.bz2
edk2-b34eb190837327224a46723051a587d98b3cabd3.zip
IntelFspPkg: Refine the format of meta data files.
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Shumin Qiu <shumin.qiu@intel.com> Reviewed-by: Jiewen Yao <jiewen.yao@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16622 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'IntelFspPkg/Library')
-rw-r--r--IntelFspPkg/Library/BaseCacheAsRamLibNull/BaseCacheAsRamLibNull.inf3
-rw-r--r--IntelFspPkg/Library/BaseCacheLib/BaseCacheLib.inf3
-rw-r--r--IntelFspPkg/Library/BaseFspCommonLib/BaseFspCommonLib.inf10
-rw-r--r--IntelFspPkg/Library/BaseFspDebugLibSerialPort/BaseFspDebugLibSerialPort.inf7
-rw-r--r--IntelFspPkg/Library/BaseFspPlatformLib/BaseFspPlatformLib.inf17
-rw-r--r--IntelFspPkg/Library/BaseFspSwitchStackLib/BaseFspSwitchStackLib.inf7
-rw-r--r--IntelFspPkg/Library/SecPlatformSecLibNull/SecPlatformSecLibNull.inf3
7 files changed, 28 insertions, 22 deletions
diff --git a/IntelFspPkg/Library/BaseCacheAsRamLibNull/BaseCacheAsRamLibNull.inf b/IntelFspPkg/Library/BaseCacheAsRamLibNull/BaseCacheAsRamLibNull.inf
index 7c8492cc4d..1b98870472 100644
--- a/IntelFspPkg/Library/BaseCacheAsRamLibNull/BaseCacheAsRamLibNull.inf
+++ b/IntelFspPkg/Library/BaseCacheAsRamLibNull/BaseCacheAsRamLibNull.inf
@@ -1,6 +1,7 @@
## @file
+# NULL instance of Base cache as RAM.
#
-# Copyright (c) 2014, Intel Corporation. All rights reserved.<BR>
+# Copyright (c) 2014 - 2015, Intel Corporation. All rights reserved.<BR>
#
# This program and the accompanying materials
# are licensed and made available under the terms and conditions of the BSD License
diff --git a/IntelFspPkg/Library/BaseCacheLib/BaseCacheLib.inf b/IntelFspPkg/Library/BaseCacheLib/BaseCacheLib.inf
index fb8d5f6083..01cae9680c 100644
--- a/IntelFspPkg/Library/BaseCacheLib/BaseCacheLib.inf
+++ b/IntelFspPkg/Library/BaseCacheLib/BaseCacheLib.inf
@@ -1,6 +1,7 @@
## @file
+# Instance of BaseCache.
#
-# Copyright (c) 2014, Intel Corporation. All rights reserved.<BR>
+# Copyright (c) 2014 - 2015, Intel Corporation. All rights reserved.<BR>
#
# This program and the accompanying materials
# are licensed and made available under the terms and conditions of the BSD License
diff --git a/IntelFspPkg/Library/BaseFspCommonLib/BaseFspCommonLib.inf b/IntelFspPkg/Library/BaseFspCommonLib/BaseFspCommonLib.inf
index 0fa8c6a2dc..32b4482908 100644
--- a/IntelFspPkg/Library/BaseFspCommonLib/BaseFspCommonLib.inf
+++ b/IntelFspPkg/Library/BaseFspCommonLib/BaseFspCommonLib.inf
@@ -1,6 +1,6 @@
## @file
-#
-# Copyright (c) 2014, Intel Corporation. All rights reserved.<BR>
+# Instance of FspCommonLib
+# Copyright (c) 2014 - 2015, Intel Corporation. All rights reserved.<BR>
#
# This program and the accompanying materials
# are licensed and made available under the terms and conditions of the BSD License
@@ -30,8 +30,8 @@
BaseMemoryLib
[Pcd]
- gIntelFspPkgTokenSpaceGuid.PcdGlobalDataPointerAddress
+ gIntelFspPkgTokenSpaceGuid.PcdGlobalDataPointerAddress ## CONSUMES
[FixedPcd]
- gIntelFspPkgTokenSpaceGuid.PcdFspMaxPatchEntry
- gIntelFspPkgTokenSpaceGuid.PcdFspMaxPerfEntry
+ gIntelFspPkgTokenSpaceGuid.PcdFspMaxPatchEntry ## CONSUMES
+ gIntelFspPkgTokenSpaceGuid.PcdFspMaxPerfEntry ## CONSUMES
diff --git a/IntelFspPkg/Library/BaseFspDebugLibSerialPort/BaseFspDebugLibSerialPort.inf b/IntelFspPkg/Library/BaseFspDebugLibSerialPort/BaseFspDebugLibSerialPort.inf
index 85c2615acc..00d79705ae 100644
--- a/IntelFspPkg/Library/BaseFspDebugLibSerialPort/BaseFspDebugLibSerialPort.inf
+++ b/IntelFspPkg/Library/BaseFspDebugLibSerialPort/BaseFspDebugLibSerialPort.inf
@@ -1,6 +1,7 @@
## @file
+# Instance of BaseFspDebugLib
#
-# Copyright (c) 2014, Intel Corporation. All rights reserved.<BR>
+# Copyright (c) 2014 - 2015, Intel Corporation. All rights reserved.<BR>
#
# This program and the accompanying materials
# are licensed and made available under the terms and conditions of the BSD License
@@ -44,6 +45,6 @@
DebugPrintErrorLevelLib
[Pcd]
- gEfiMdePkgTokenSpaceGuid.PcdDebugClearMemoryValue
- gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask
+ gEfiMdePkgTokenSpaceGuid.PcdDebugClearMemoryValue ## CONSUMES
+ gEfiMdePkgTokenSpaceGuid.PcdDebugPropertyMask ## CONSUMES
diff --git a/IntelFspPkg/Library/BaseFspPlatformLib/BaseFspPlatformLib.inf b/IntelFspPkg/Library/BaseFspPlatformLib/BaseFspPlatformLib.inf
index 4122508baa..1f5dd1d1f8 100644
--- a/IntelFspPkg/Library/BaseFspPlatformLib/BaseFspPlatformLib.inf
+++ b/IntelFspPkg/Library/BaseFspPlatformLib/BaseFspPlatformLib.inf
@@ -1,6 +1,7 @@
## @file
+# Instance of FspPlatformLib
#
-# Copyright (c) 2014, Intel Corporation. All rights reserved.<BR>
+# Copyright (c) 2014 - 2015, Intel Corporation. All rights reserved.<BR>
#
# This program and the accompanying materials
# are licensed and made available under the terms and conditions of the BSD License
@@ -31,14 +32,14 @@
BaseMemoryLib
[Pcd]
- gIntelFspPkgTokenSpaceGuid.PcdGlobalDataPointerAddress
- gIntelFspPkgTokenSpaceGuid.PcdTemporaryRamBase
- gIntelFspPkgTokenSpaceGuid.PcdTemporaryRamSize
- gIntelFspPkgTokenSpaceGuid.PcdFspTemporaryRamSize
+ gIntelFspPkgTokenSpaceGuid.PcdGlobalDataPointerAddress ## CONSUMES
+ gIntelFspPkgTokenSpaceGuid.PcdTemporaryRamBase ## CONSUMES
+ gIntelFspPkgTokenSpaceGuid.PcdTemporaryRamSize ## CONSUMES
+ gIntelFspPkgTokenSpaceGuid.PcdFspTemporaryRamSize ## CONSUMES
[Guids]
- gFspBootLoaderTemporaryMemoryGuid
+ gFspBootLoaderTemporaryMemoryGuid ## PRODUCES ## HOB
[FixedPcd]
- gIntelFspPkgTokenSpaceGuid.PcdFspMaxPatchEntry
- gIntelFspPkgTokenSpaceGuid.PcdFspMaxPerfEntry
+ gIntelFspPkgTokenSpaceGuid.PcdFspMaxPatchEntry ## CONSUMES
+ gIntelFspPkgTokenSpaceGuid.PcdFspMaxPerfEntry ## CONSUMES
diff --git a/IntelFspPkg/Library/BaseFspSwitchStackLib/BaseFspSwitchStackLib.inf b/IntelFspPkg/Library/BaseFspSwitchStackLib/BaseFspSwitchStackLib.inf
index c3b47b5dbf..a52ee033a0 100644
--- a/IntelFspPkg/Library/BaseFspSwitchStackLib/BaseFspSwitchStackLib.inf
+++ b/IntelFspPkg/Library/BaseFspSwitchStackLib/BaseFspSwitchStackLib.inf
@@ -1,6 +1,7 @@
## @file
+# Instance of BaseFspSwitchStackLib
#
-# Copyright (c) 2014, Intel Corporation. All rights reserved.<BR>
+# Copyright (c) 2014 - 2015, Intel Corporation. All rights reserved.<BR>
#
# This program and the accompanying materials
# are licensed and made available under the terms and conditions of the BSD License
@@ -35,8 +36,8 @@
IoLib
[FixedPcd]
- gIntelFspPkgTokenSpaceGuid.PcdFspMaxPatchEntry
- gIntelFspPkgTokenSpaceGuid.PcdFspMaxPerfEntry
+ gIntelFspPkgTokenSpaceGuid.PcdFspMaxPatchEntry ## CONSUMES
+ gIntelFspPkgTokenSpaceGuid.PcdFspMaxPerfEntry ## CONSUMES
diff --git a/IntelFspPkg/Library/SecPlatformSecLibNull/SecPlatformSecLibNull.inf b/IntelFspPkg/Library/SecPlatformSecLibNull/SecPlatformSecLibNull.inf
index 31707a68d8..4f0424e873 100644
--- a/IntelFspPkg/Library/SecPlatformSecLibNull/SecPlatformSecLibNull.inf
+++ b/IntelFspPkg/Library/SecPlatformSecLibNull/SecPlatformSecLibNull.inf
@@ -1,6 +1,7 @@
## @file
+# NULL instance of Platform Sec Lib.
#
-# Copyright (c) 2014, Intel Corporation. All rights reserved.<BR>
+# Copyright (c) 2014 - 2015, Intel Corporation. All rights reserved.<BR>
#
# This program and the accompanying materials
# are licensed and made available under the terms and conditions of the BSD License