From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=134.134.136.31; helo=mga06.intel.com; envelope-from=liming.gao@intel.com; receiver=edk2-devel@lists.01.org Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 833412095E504 for ; Mon, 25 Sep 2017 04:03:29 -0700 (PDT) Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga104.jf.intel.com with ESMTP; 25 Sep 2017 04:06:40 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.42,435,1500966000"; d="scan'208";a="132050268" Received: from shwde7172.ccr.corp.intel.com ([10.239.9.14]) by orsmga004.jf.intel.com with ESMTP; 25 Sep 2017 04:06:39 -0700 From: Liming Gao To: edk2-devel@lists.01.org Cc: Jiewen Yao Date: Mon, 25 Sep 2017 19:06:22 +0800 Message-Id: <1506337584-9588-10-git-send-email-liming.gao@intel.com> X-Mailer: git-send-email 2.8.0.windows.1 In-Reply-To: <1506337584-9588-1-git-send-email-liming.gao@intel.com> References: <1506337584-9588-1-git-send-email-liming.gao@intel.com> Subject: [Patch 09/11] IntelFsp2Pkg: Update Section Name in INF files X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Sep 2017 11:03:29 -0000 Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Liming Gao Cc: Jiewen Yao --- IntelFsp2Pkg/FspNotifyPhase/FspNotifyPhasePeim.inf | 3 +-- .../Library/BaseCacheAsRamLibNull/BaseCacheAsRamLibNull.inf | 6 +++--- IntelFsp2Pkg/Library/BaseCacheLib/BaseCacheLib.inf | 6 +++--- 3 files changed, 7 insertions(+), 8 deletions(-) diff --git a/IntelFsp2Pkg/FspNotifyPhase/FspNotifyPhasePeim.inf b/IntelFsp2Pkg/FspNotifyPhase/FspNotifyPhasePeim.inf index 75f7ae5..a0bc375 100644 --- a/IntelFsp2Pkg/FspNotifyPhase/FspNotifyPhasePeim.inf +++ b/IntelFsp2Pkg/FspNotifyPhase/FspNotifyPhasePeim.inf @@ -1,8 +1,7 @@ ## @file # Component information file for the FSP notify phase PEI module. # -#@copyright -# Copyright (c) 2016 Intel Corporation. All rights reserved. +# Copyright (c) 2016 - 2017, Intel Corporation. All rights reserved. # 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 diff --git a/IntelFsp2Pkg/Library/BaseCacheAsRamLibNull/BaseCacheAsRamLibNull.inf b/IntelFsp2Pkg/Library/BaseCacheAsRamLibNull/BaseCacheAsRamLibNull.inf index bdb6744..6a77ce7 100644 --- a/IntelFsp2Pkg/Library/BaseCacheAsRamLibNull/BaseCacheAsRamLibNull.inf +++ b/IntelFsp2Pkg/Library/BaseCacheAsRamLibNull/BaseCacheAsRamLibNull.inf @@ -1,7 +1,7 @@ ## @file # NULL instance of Base cache as RAM. # -# Copyright (c) 2014 - 2015, Intel Corporation. All rights reserved.
+# Copyright (c) 2014 - 2017, Intel Corporation. All rights reserved.
# # This program and the accompanying materials # are licensed and made available under the terms and conditions of the BSD License @@ -12,7 +12,7 @@ # ## -[defines] +[Defines] INF_VERSION = 0x00010005 BASE_NAME = BaseCacheAsRamLibNull FILE_GUID = 630AEB10-2106-4234-9DB3-836A3663F50D @@ -20,7 +20,7 @@ VERSION_STRING = 1.0 LIBRARY_CLASS = CacheAsRamLib -[sources.common] +[Sources.common] DisableCacheAsRamNull.c [Packages] diff --git a/IntelFsp2Pkg/Library/BaseCacheLib/BaseCacheLib.inf b/IntelFsp2Pkg/Library/BaseCacheLib/BaseCacheLib.inf index 7b026b1..34df6ad 100644 --- a/IntelFsp2Pkg/Library/BaseCacheLib/BaseCacheLib.inf +++ b/IntelFsp2Pkg/Library/BaseCacheLib/BaseCacheLib.inf @@ -1,7 +1,7 @@ ## @file # Instance of BaseCache. # -# Copyright (c) 2014 - 2015, Intel Corporation. All rights reserved.
+# Copyright (c) 2014 - 2017, Intel Corporation. All rights reserved.
# # This program and the accompanying materials # are licensed and made available under the terms and conditions of the BSD License @@ -12,7 +12,7 @@ # ## -[defines] +[Defines] INF_VERSION = 0x00010005 BASE_NAME = BaseCacheLib FILE_GUID = 8EF3A653-DA8B-4FFA-BB85-FF47406DB9F0 @@ -20,7 +20,7 @@ VERSION_STRING = 1.0 LIBRARY_CLASS = CacheLib -[sources.IA32] +[Sources.IA32] CacheLib.c CacheLibInternal.h -- 2.8.0.windows.1