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.31, mailfrom: chasel.chiu@intel.com) Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by groups.io with SMTP; Wed, 04 Sep 2019 04:46:24 -0700 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by orsmga104.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 04 Sep 2019 04:46:23 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,465,1559545200"; d="scan'208";a="382485752" Received: from kmsmsx156.gar.corp.intel.com ([172.21.138.133]) by fmsmga005.fm.intel.com with ESMTP; 04 Sep 2019 04:46:21 -0700 Received: from pgsmsx111.gar.corp.intel.com ([169.254.2.22]) by KMSMSX156.gar.corp.intel.com ([169.254.1.101]) with mapi id 14.03.0439.000; Wed, 4 Sep 2019 19:46:21 +0800 From: "Chiu, Chasel" To: "devel@edk2.groups.io" , "Ni, Ray" CC: "Desimone, Nathaniel L" , "Zeng, Star" Subject: Re: [edk2-devel] [PATCH] IntelFsp2WrapperPkg: Remove unneeded MdeModulePkg dependency Thread-Topic: [edk2-devel] [PATCH] IntelFsp2WrapperPkg: Remove unneeded MdeModulePkg dependency Thread-Index: AQHVYoQbW07AZR5DuEaEF6hJteeLxKcbZ4UA Date: Wed, 4 Sep 2019 11:46:20 +0000 Message-ID: <3C3EFB470A303B4AB093197B6777CCEC504813D4@PGSMSX111.gar.corp.intel.com> References: <20190903181816.3688-1-ray.ni@intel.com> In-Reply-To: <20190903181816.3688-1-ray.ni@intel.com> Accept-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: dlp-product: dlpe-windows dlp-version: 11.2.0.6 dlp-reaction: no-action x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiYjRkODIzYzUtMTI4MS00YzM5LWIxZGItOWFiOWQyNGU0NDkyIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX05UIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE3LjEwLjE4MDQuNDkiLCJUcnVzdGVkTGFiZWxIYXNoIjoiMXZwOFZ3bGo0bmJVSzJMS3o3XC9ZY3REMUZBQnVCODh0ZzZhRjJibUVqbWc4eHN5cEwwdUJzYWQ4blVYcTJoT1IifQ== x-ctpclassification: CTP_NT x-originating-ip: [172.30.20.205] MIME-Version: 1.0 Content-Language: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Reviewed-by: Chasel Chiu > -----Original Message----- > From: devel@edk2.groups.io On Behalf Of Ni, Ray > Sent: Wednesday, September 4, 2019 2:18 AM > To: devel@edk2.groups.io > Cc: Chiu, Chasel ; Desimone, Nathaniel L > ; Zeng, Star > Subject: [edk2-devel] [PATCH] IntelFsp2WrapperPkg: Remove unneeded > MdeModulePkg dependency >=20 > Signed-off-by: Ray Ni > Cc: Chasel Chiu > Cc: Nate DeSimone > Cc: Star Zeng > --- > IntelFsp2WrapperPkg/FspmWrapperPeim/FspmWrapperPeim.inf | 4 +--- > IntelFsp2WrapperPkg/FspsWrapperPeim/FspsWrapperPeim.inf | 4 +--- > 2 files changed, 2 insertions(+), 6 deletions(-) >=20 > diff --git a/IntelFsp2WrapperPkg/FspmWrapperPeim/FspmWrapperPeim.inf > b/IntelFsp2WrapperPkg/FspmWrapperPeim/FspmWrapperPeim.inf > index 82113dd148..dce7ef3d0b 100644 > --- a/IntelFsp2WrapperPkg/FspmWrapperPeim/FspmWrapperPeim.inf > +++ b/IntelFsp2WrapperPkg/FspmWrapperPeim/FspmWrapperPeim.inf > @@ -6,7 +6,7 @@ > # register TemporaryRamDonePpi to call TempRamExit API, and register > MemoryDiscoveredPpi # notify to call FspSiliconInit API. > # > -# Copyright (c) 2014 - 2018, Intel Corporation. All rights reserved. > +# Copyright (c) 2014 - 2019, Intel Corporation. All rights > +reserved.
> # > # SPDX-License-Identifier: BSD-2-Clause-Patent # @@ -37,7 +37,6 @@ > [LibraryClasses] > HobLib > FspWrapperPlatformLib > FspWrapperHobProcessLib > - DebugAgentLib > UefiCpuLib > PeCoffGetEntryPointLib > PeCoffExtraActionLib > @@ -48,7 +47,6 @@ [LibraryClasses] >=20 > [Packages] > MdePkg/MdePkg.dec > - MdeModulePkg/MdeModulePkg.dec > UefiCpuPkg/UefiCpuPkg.dec > IntelFsp2Pkg/IntelFsp2Pkg.dec > IntelFsp2WrapperPkg/IntelFsp2WrapperPkg.dec > diff --git a/IntelFsp2WrapperPkg/FspsWrapperPeim/FspsWrapperPeim.inf > b/IntelFsp2WrapperPkg/FspsWrapperPeim/FspsWrapperPeim.inf > index 1be4bf56a6..7da92991c8 100644 > --- a/IntelFsp2WrapperPkg/FspsWrapperPeim/FspsWrapperPeim.inf > +++ b/IntelFsp2WrapperPkg/FspsWrapperPeim/FspsWrapperPeim.inf > @@ -6,7 +6,7 @@ > # register TemporaryRamDonePpi to call TempRamExit API, and register > MemoryDiscoveredPpi # notify to call FspSiliconInit API. > # > -# Copyright (c) 2014 - 2018, Intel Corporation. All rights reserved. > +# Copyright (c) 2014 - 2019, Intel Corporation. All rights > +reserved.
> # > # SPDX-License-Identifier: BSD-2-Clause-Patent # @@ -38,7 +38,6 @@ > [LibraryClasses] > MemoryAllocationLib > FspWrapperPlatformLib > FspWrapperHobProcessLib > - DebugAgentLib > UefiCpuLib > PeCoffGetEntryPointLib > PeCoffExtraActionLib > @@ -48,7 +47,6 @@ [LibraryClasses] >=20 > [Packages] > MdePkg/MdePkg.dec > - MdeModulePkg/MdeModulePkg.dec > UefiCpuPkg/UefiCpuPkg.dec > IntelFsp2Pkg/IntelFsp2Pkg.dec > IntelFsp2WrapperPkg/IntelFsp2WrapperPkg.dec > -- > 2.21.0.windows.1 >=20 >=20 >=20