From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 134.134.136.126, mailfrom: liming.gao@intel.com) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by groups.io with SMTP; Tue, 06 Aug 2019 17:49:55 -0700 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga106.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 06 Aug 2019 17:49:55 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,353,1559545200"; d="scan'208";a="192786437" Received: from fmsmsx104.amr.corp.intel.com ([10.18.124.202]) by fmsmga001.fm.intel.com with ESMTP; 06 Aug 2019 17:49:54 -0700 Received: from fmsmsx122.amr.corp.intel.com (10.18.125.37) by fmsmsx104.amr.corp.intel.com (10.18.124.202) with Microsoft SMTP Server (TLS) id 14.3.439.0; Tue, 6 Aug 2019 17:49:54 -0700 Received: from shsmsx151.ccr.corp.intel.com (10.239.6.50) by fmsmsx122.amr.corp.intel.com (10.18.125.37) with Microsoft SMTP Server (TLS) id 14.3.439.0; Tue, 6 Aug 2019 17:49:54 -0700 Received: from shsmsx104.ccr.corp.intel.com ([169.254.5.112]) by SHSMSX151.ccr.corp.intel.com ([169.254.3.250]) with mapi id 14.03.0439.000; Wed, 7 Aug 2019 08:49:52 +0800 From: "Liming Gao" To: "devel@edk2.groups.io" , "Kubacki, Michael A" CC: "Chiu, Chasel" , "Desimone, Nathaniel L" Subject: Re: [edk2-devel] [edk2-platforms][PATCH V1 1/1] MinPlatformPkg: Fix duplicate GUID Thread-Topic: [edk2-devel] [edk2-platforms][PATCH V1 1/1] MinPlatformPkg: Fix duplicate GUID Thread-Index: AQHVTJZLrSblM25si0WwnJsCPtpMWqbu2tfw Date: Wed, 7 Aug 2019 00:49:52 +0000 Message-ID: <4A89E2EF3DFEDB4C8BFDE51014F606A14E4C970B@SHSMSX104.ccr.corp.intel.com> References: <20190806203351.24460-1-michael.a.kubacki@intel.com> In-Reply-To: <20190806203351.24460-1-michael.a.kubacki@intel.com> Accept-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] MIME-Version: 1.0 Return-Path: liming.gao@intel.com Content-Language: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Reviewed-by: Liming Gao >-----Original Message----- >From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of >Kubacki, Michael A >Sent: Wednesday, August 07, 2019 4:34 AM >To: devel@edk2.groups.io >Cc: Chiu, Chasel ; Desimone, Nathaniel L >; Gao, Liming >Subject: [edk2-devel] [edk2-platforms][PATCH V1 1/1] MinPlatformPkg: Fix >duplicate GUID > >REF:https://bugzilla.tianocore.org/show_bug.cgi?id=3D1983 > >PeiLib.inf and TestPointCheckLibNull.inf currently have the same GUID. >This patch assigns a unique GUID to each library INF file. > >Cc: Chasel Chiu >Cc: Nate DeSimone >Cc: Liming Gao >Signed-off-by: Michael Kubacki >--- > Platform/Intel/MinPlatformPkg/Library/PeiLib/PeiLib.inf | 6 = +++--- > .../Test/Library/TestPointCheckLibNull/TestPointCheckLibNull.inf | 4 = ++-- > 2 files changed, 5 insertions(+), 5 deletions(-) > >diff --git a/Platform/Intel/MinPlatformPkg/Library/PeiLib/PeiLib.inf >b/Platform/Intel/MinPlatformPkg/Library/PeiLib/PeiLib.inf >index 86b1628c9f..7e740172a0 100644 >--- a/Platform/Intel/MinPlatformPkg/Library/PeiLib/PeiLib.inf >+++ b/Platform/Intel/MinPlatformPkg/Library/PeiLib/PeiLib.inf >@@ -1,7 +1,7 @@ > ## @file > # Component information file for Board Init Test Library > # >-# Copyright (c) 2017, Intel Corporation. All rights reserved.
>+# Copyright (c) 2017 - 2019, Intel Corporation. All rights reserved.
> # > # SPDX-License-Identifier: BSD-2-Clause-Patent > # >@@ -10,7 +10,7 @@ > [Defines] > INF_VERSION =3D 0x00010005 > BASE_NAME =3D PeiLib >- FILE_GUID =3D 657A478B-16B9-4B6D-9C41-BEF86197BDF= 4 >+ FILE_GUID =3D F19AA754-CE24-448D-B755-1F939B00C25= D > MODULE_TYPE =3D BASE > VERSION_STRING =3D 1.0 > LIBRARY_CLASS =3D PeiLib >@@ -26,6 +26,6 @@ > > [Sources] > PeiLib.c >- >+ > [Ppis] > gEfiPeiReadOnlyVariable2PpiGuid ## CONSUMES >diff --git >a/Platform/Intel/MinPlatformPkg/Test/Library/TestPointCheckLibNull/TestPo >intCheckLibNull.inf >b/Platform/Intel/MinPlatformPkg/Test/Library/TestPointCheckLibNull/TestPo >intCheckLibNull.inf >index bead6ba35b..0a59f02779 100644 >--- >a/Platform/Intel/MinPlatformPkg/Test/Library/TestPointCheckLibNull/TestPo >intCheckLibNull.inf >+++ >b/Platform/Intel/MinPlatformPkg/Test/Library/TestPointCheckLibNull/TestPo >intCheckLibNull.inf >@@ -1,7 +1,7 @@ > ## @file > # Component information file for Board Init Test Library > # >-# Copyright (c) 2017, Intel Corporation. All rights reserved.
>+# Copyright (c) 2017 - 2019, Intel Corporation. All rights reserved.
> # > # SPDX-License-Identifier: BSD-2-Clause-Patent > # >@@ -10,7 +10,7 @@ > [Defines] > INF_VERSION =3D 0x00010005 > BASE_NAME =3D TestPointCheckLibNull >- FILE_GUID =3D 657A478B-16B9-4B6D-9C41-BEF86197BDF= 4 >+ FILE_GUID =3D A50DAF74-4EC0-46CD-A1ED-C885D4E97F2= B > MODULE_TYPE =3D BASE > VERSION_STRING =3D 1.0 > LIBRARY_CLASS =3D TestPointCheckLib >-- >2.16.2.windows.1 > > >