Revision: 16856
          http://sourceforge.net/p/edk2/code/16856
Author:   hwu1225
Date:     2015-02-13 05:25:55 +0000 (Fri, 13 Feb 2015)
Log Message:
-----------
IntelFspPkg: Refine the format of meta data files.

(Sync patch r16622 from main trunk.)

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Shumin Qiu <[email protected]>
Reviewed-by: Jiewen Yao <[email protected]>

Revision Links:
--------------
    http://sourceforge.net/p/edk2/code/16622

Modified Paths:
--------------
    branches/UDK2014.SP1/IntelFspPkg/FspDxeIpl/FspDxeIpl.inf
    branches/UDK2014.SP1/IntelFspPkg/FspSecCore/FspSecCore.inf
    branches/UDK2014.SP1/IntelFspPkg/IntelFspPkg.dec
    branches/UDK2014.SP1/IntelFspPkg/IntelFspPkg.dsc
    
branches/UDK2014.SP1/IntelFspPkg/Library/BaseCacheAsRamLibNull/BaseCacheAsRamLibNull.inf
    branches/UDK2014.SP1/IntelFspPkg/Library/BaseCacheLib/BaseCacheLib.inf
    
branches/UDK2014.SP1/IntelFspPkg/Library/BaseFspCommonLib/BaseFspCommonLib.inf
    
branches/UDK2014.SP1/IntelFspPkg/Library/BaseFspDebugLibSerialPort/BaseFspDebugLibSerialPort.inf
    
branches/UDK2014.SP1/IntelFspPkg/Library/BaseFspPlatformLib/BaseFspPlatformLib.inf
    
branches/UDK2014.SP1/IntelFspPkg/Library/BaseFspSwitchStackLib/BaseFspSwitchStackLib.inf
    
branches/UDK2014.SP1/IntelFspPkg/Library/SecPlatformSecLibNull/SecPlatformSecLibNull.inf

Modified: branches/UDK2014.SP1/IntelFspPkg/FspDxeIpl/FspDxeIpl.inf
===================================================================
--- branches/UDK2014.SP1/IntelFspPkg/FspDxeIpl/FspDxeIpl.inf    2015-02-13 
05:23:56 UTC (rev 16855)
+++ branches/UDK2014.SP1/IntelFspPkg/FspDxeIpl/FspDxeIpl.inf    2015-02-13 
05:25:55 UTC (rev 16856)
@@ -1,6 +1,7 @@
 ## @file
+#  PEIM for DXE IPL
 #
-#  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
@@ -53,17 +54,17 @@
 [Ppis]
   gEfiDxeIplPpiGuid                       ## PRODUCES
   gEfiEndOfPeiSignalPpiGuid               ## SOMETIMES_PRODUCES(Not produced 
on S3 boot path)
-  gEfiPeiDecompressPpiGuid
+  gEfiPeiDecompressPpiGuid                ## CONSUMES
 
 [Protocols]
-  gEfiPciEnumerationCompleteProtocolGuid  # ALWAYS_PRODUCED
+  gEfiPciEnumerationCompleteProtocolGuid  ## PRODUCES
 
 [Guids]
-  gEfiEventReadyToBootGuid                # ALWAYS_PRODUCED
+  gEfiEventReadyToBootGuid                ## PRODUCES ## Event
 
 [FixedPcd]
-  gIntelFspPkgTokenSpaceGuid.PcdFspMaxPatchEntry
-  gIntelFspPkgTokenSpaceGuid.PcdFspMaxPerfEntry
+  gIntelFspPkgTokenSpaceGuid.PcdFspMaxPatchEntry    ## CONSUMES 
+  gIntelFspPkgTokenSpaceGuid.PcdFspMaxPerfEntry     ## CONSUMES  
 
 [Depex]
   gEfiPeiMemoryDiscoveredPpiGuid AND gEfiPeiLoadFilePpiGuid

Modified: branches/UDK2014.SP1/IntelFspPkg/FspSecCore/FspSecCore.inf
===================================================================
--- branches/UDK2014.SP1/IntelFspPkg/FspSecCore/FspSecCore.inf  2015-02-13 
05:23:56 UTC (rev 16855)
+++ branches/UDK2014.SP1/IntelFspPkg/FspSecCore/FspSecCore.inf  2015-02-13 
05:25:55 UTC (rev 16856)
@@ -1,6 +1,7 @@
 ## @file
+#  Sec Core for FSP
 #
-#  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
@@ -57,16 +58,16 @@
   FspCommonLib
 
 [Pcd]
-  gEfiMdePkgTokenSpaceGuid.PcdPciExpressBaseAddress
-  gIntelFspPkgTokenSpaceGuid.PcdGlobalDataPointerAddress
-  gIntelFspPkgTokenSpaceGuid.PcdTemporaryRamBase
-  gIntelFspPkgTokenSpaceGuid.PcdTemporaryRamSize
-  gIntelFspPkgTokenSpaceGuid.PcdFspTemporaryRamSize
+  gEfiMdePkgTokenSpaceGuid.PcdPciExpressBaseAddress           ## UNDEFINED
+  gIntelFspPkgTokenSpaceGuid.PcdGlobalDataPointerAddress      ## CONSUMES
+  gIntelFspPkgTokenSpaceGuid.PcdTemporaryRamBase              ## CONSUMES
+  gIntelFspPkgTokenSpaceGuid.PcdTemporaryRamSize              ## CONSUMES
+  gIntelFspPkgTokenSpaceGuid.PcdFspTemporaryRamSize           ## CONSUMES
 
 [FixedPcd]
-  gIntelFspPkgTokenSpaceGuid.PcdFspMaxPatchEntry
-  gIntelFspPkgTokenSpaceGuid.PcdFspMaxPerfEntry
+  gIntelFspPkgTokenSpaceGuid.PcdFspMaxPatchEntry              ## CONSUMES
+  gIntelFspPkgTokenSpaceGuid.PcdFspMaxPerfEntry               ## CONSUMES
 
 [Ppis]
-  gEfiTemporaryRamSupportPpiGuid                # PPI ALWAYS_PRODUCED
+  gEfiTemporaryRamSupportPpiGuid                ## PRODUCES 
 

Modified: branches/UDK2014.SP1/IntelFspPkg/IntelFspPkg.dec
===================================================================
--- branches/UDK2014.SP1/IntelFspPkg/IntelFspPkg.dec    2015-02-13 05:23:56 UTC 
(rev 16855)
+++ branches/UDK2014.SP1/IntelFspPkg/IntelFspPkg.dec    2015-02-13 05:25:55 UTC 
(rev 16856)
@@ -1,8 +1,7 @@
 ## @file
-#
 # Provides driver and definitions to build fsp in EDKII bios.
 #
-# 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 that accompanies this 
distribution.
 # The full text of the license may be found at

Modified: branches/UDK2014.SP1/IntelFspPkg/IntelFspPkg.dsc
===================================================================
--- branches/UDK2014.SP1/IntelFspPkg/IntelFspPkg.dsc    2015-02-13 05:23:56 UTC 
(rev 16855)
+++ branches/UDK2014.SP1/IntelFspPkg/IntelFspPkg.dsc    2015-02-13 05:25:55 UTC 
(rev 16856)
@@ -1,6 +1,7 @@
 ## @file
+# Provides driver and definitions to build fsp in EDKII bios.
 #
-# 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 that accompanies this 
distribution.
 # The full text of the license may be found at

Modified: 
branches/UDK2014.SP1/IntelFspPkg/Library/BaseCacheAsRamLibNull/BaseCacheAsRamLibNull.inf
===================================================================
--- 
branches/UDK2014.SP1/IntelFspPkg/Library/BaseCacheAsRamLibNull/BaseCacheAsRamLibNull.inf
    2015-02-13 05:23:56 UTC (rev 16855)
+++ 
branches/UDK2014.SP1/IntelFspPkg/Library/BaseCacheAsRamLibNull/BaseCacheAsRamLibNull.inf
    2015-02-13 05:25:55 UTC (rev 16856)
@@ -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

Modified: branches/UDK2014.SP1/IntelFspPkg/Library/BaseCacheLib/BaseCacheLib.inf
===================================================================
--- branches/UDK2014.SP1/IntelFspPkg/Library/BaseCacheLib/BaseCacheLib.inf      
2015-02-13 05:23:56 UTC (rev 16855)
+++ branches/UDK2014.SP1/IntelFspPkg/Library/BaseCacheLib/BaseCacheLib.inf      
2015-02-13 05:25:55 UTC (rev 16856)
@@ -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

Modified: 
branches/UDK2014.SP1/IntelFspPkg/Library/BaseFspCommonLib/BaseFspCommonLib.inf
===================================================================
--- 
branches/UDK2014.SP1/IntelFspPkg/Library/BaseFspCommonLib/BaseFspCommonLib.inf  
    2015-02-13 05:23:56 UTC (rev 16855)
+++ 
branches/UDK2014.SP1/IntelFspPkg/Library/BaseFspCommonLib/BaseFspCommonLib.inf  
    2015-02-13 05:25:55 UTC (rev 16856)
@@ -1,7 +1,7 @@
 ## @file
+#  Instance of FspCommonLib 
+#  Copyright (c) 2014 - 2015, Intel Corporation. All rights reserved.<BR>
 #
-#  Copyright (c) 2014, 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
 #  which accompanies this distribution. The full text of the license may be 
found at
@@ -30,8 +30,8 @@
   BaseMemoryLib
 
 [Pcd]
-  gIntelFspPkgTokenSpaceGuid.PcdGlobalDataPointerAddress
+  gIntelFspPkgTokenSpaceGuid.PcdGlobalDataPointerAddress      ## CONSUMES
 
 [FixedPcd]
-  gIntelFspPkgTokenSpaceGuid.PcdFspMaxPatchEntry
-  gIntelFspPkgTokenSpaceGuid.PcdFspMaxPerfEntry
+  gIntelFspPkgTokenSpaceGuid.PcdFspMaxPatchEntry              ## CONSUMES
+  gIntelFspPkgTokenSpaceGuid.PcdFspMaxPerfEntry               ## CONSUMES

Modified: 
branches/UDK2014.SP1/IntelFspPkg/Library/BaseFspDebugLibSerialPort/BaseFspDebugLibSerialPort.inf
===================================================================
--- 
branches/UDK2014.SP1/IntelFspPkg/Library/BaseFspDebugLibSerialPort/BaseFspDebugLibSerialPort.inf
    2015-02-13 05:23:56 UTC (rev 16855)
+++ 
branches/UDK2014.SP1/IntelFspPkg/Library/BaseFspDebugLibSerialPort/BaseFspDebugLibSerialPort.inf
    2015-02-13 05:25:55 UTC (rev 16856)
@@ -1,4 +1,5 @@
 ## @file
+#  Instance of BaseFspDebugLib
 #
 #  Copyright (c) 2014 - 2015, Intel Corporation. All rights reserved.<BR>
 #

Modified: 
branches/UDK2014.SP1/IntelFspPkg/Library/BaseFspPlatformLib/BaseFspPlatformLib.inf
===================================================================
--- 
branches/UDK2014.SP1/IntelFspPkg/Library/BaseFspPlatformLib/BaseFspPlatformLib.inf
  2015-02-13 05:23:56 UTC (rev 16855)
+++ 
branches/UDK2014.SP1/IntelFspPkg/Library/BaseFspPlatformLib/BaseFspPlatformLib.inf
  2015-02-13 05:25:55 UTC (rev 16856)
@@ -39,7 +39,7 @@
   gIntelFspPkgTokenSpaceGuid.PcdFspTemporaryRamSize         ## CONSUMES
 
 [Guids]
-  gFspBootLoaderTemporaryMemoryGuid                         ## PRODUCES ## HOB
+  gFspBootLoaderTemporaryMemoryGuid                     ## PRODUCES ## HOB
 
 [FixedPcd]
   gIntelFspPkgTokenSpaceGuid.PcdFspMaxPatchEntry        ## CONSUMES

Modified: 
branches/UDK2014.SP1/IntelFspPkg/Library/BaseFspSwitchStackLib/BaseFspSwitchStackLib.inf
===================================================================
--- 
branches/UDK2014.SP1/IntelFspPkg/Library/BaseFspSwitchStackLib/BaseFspSwitchStackLib.inf
    2015-02-13 05:23:56 UTC (rev 16855)
+++ 
branches/UDK2014.SP1/IntelFspPkg/Library/BaseFspSwitchStackLib/BaseFspSwitchStackLib.inf
    2015-02-13 05:25:55 UTC (rev 16856)
@@ -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
 
 
 

Modified: 
branches/UDK2014.SP1/IntelFspPkg/Library/SecPlatformSecLibNull/SecPlatformSecLibNull.inf
===================================================================
--- 
branches/UDK2014.SP1/IntelFspPkg/Library/SecPlatformSecLibNull/SecPlatformSecLibNull.inf
    2015-02-13 05:23:56 UTC (rev 16855)
+++ 
branches/UDK2014.SP1/IntelFspPkg/Library/SecPlatformSecLibNull/SecPlatformSecLibNull.inf
    2015-02-13 05:25:55 UTC (rev 16856)
@@ -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


------------------------------------------------------------------------------
Dive into the World of Parallel Programming. The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net/
_______________________________________________
edk2-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/edk2-commits

Reply via email to