From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mx.groups.io with SMTP id smtpd.web10.1388.1687316131057653458 for ; Tue, 20 Jun 2023 19:55:31 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=H7fCujV2; spf=pass (domain: intel.com, ip: 134.134.136.20, mailfrom: ray.ni@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1687316131; x=1718852131; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=/1bMVmhocGmScRdfco5/hVzl85BrO3xjPj5JhzvRGz0=; b=H7fCujV2IZFglJ1yoWhDeXaOc4IyiIOvZiOyNQBWnH/WsUwdJfGJV0YE eWqEFR5Wqw/WiNjdKXymZP7xT1RijmcXc3uOqEKyAfZCkvtg+6QzF3fe2 qCxLPQL35McRQmggynm50mxMwnmFBx8XR7Im7+sfy/kp4/eEAQ0Vft8Ne t90eaJO3gpPI3GZJegLKmaDOVIyBGxJrqDVFIrwuKJtfeTLQWKpv6H+zu EpR0S/oesj/YZFvzoL5muHhnN8Gj/1oMPm7sUMQonAes74dgYv3GksGbj WKOes70dEwrmnFfuNdyByGQTJXufB+5iUWtjEEAkmwhyPIIfjrf4C1zEo Q==; X-IronPort-AV: E=McAfee;i="6600,9927,10747"; a="349777308" X-IronPort-AV: E=Sophos;i="6.00,259,1681196400"; d="scan'208";a="349777308" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 20 Jun 2023 19:55:30 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10747"; a="827253392" X-IronPort-AV: E=Sophos;i="6.00,259,1681196400"; d="scan'208";a="827253392" Received: from shwdeopenlab706.ccr.corp.intel.com ([10.239.55.95]) by fmsmga002.fm.intel.com with ESMTP; 20 Jun 2023 19:55:29 -0700 From: "Ni, Ray" To: devel@edk2.groups.io Cc: Eric Dong , Rahul Kumar , Gerd Hoffmann Subject: [PATCH v2 1/3] UefiCpuPkg: Include ResetVector in DSC Date: Wed, 21 Jun 2023 10:55:20 +0800 Message-Id: <20230621025522.641-2-ray.ni@intel.com> X-Mailer: git-send-email 2.39.1.windows.1 In-Reply-To: <20230621025522.641-1-ray.ni@intel.com> References: <20230621025522.641-1-ray.ni@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Since ResetVector source module shares the same GUID as the binary module, the binary INF file is just removed from DSC. Signed-off-by: Ray Ni Cc: Eric Dong Cc: Rahul Kumar Acked-by: Gerd Hoffmann --- UefiCpuPkg/UefiCpuPkg.dsc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/UefiCpuPkg/UefiCpuPkg.dsc b/UefiCpuPkg/UefiCpuPkg.dsc index 593c11cc74..7af1c83424 100644 --- a/UefiCpuPkg/UefiCpuPkg.dsc +++ b/UefiCpuPkg/UefiCpuPkg.dsc @@ -1,7 +1,7 @@ ## @file=0D # UefiCpuPkg Package=0D #=0D -# Copyright (c) 2007 - 2022, Intel Corporation. All rights reserved.
= =0D +# Copyright (c) 2007 - 2023, Intel Corporation. All rights reserved.
= =0D #=0D # SPDX-License-Identifier: BSD-2-Clause-Patent=0D #=0D @@ -168,7 +168,7 @@ SmmCpuFeaturesLib|UefiCpuPkg/Library/SmmCpuFeaturesLib/SmmCpuFeature= sLibStm.inf=0D }=0D UefiCpuPkg/Universal/Acpi/S3Resume2Pei/S3Resume2Pei.inf=0D - UefiCpuPkg/ResetVector/Vtf0/Bin/ResetVector.inf=0D + UefiCpuPkg/ResetVector/Vtf0/ResetVector.inf=0D UefiCpuPkg/Library/SmmCpuRendezvousLib/SmmCpuRendezvousLib.inf=0D UefiCpuPkg/Library/CpuPageTableLib/CpuPageTableLib.inf=0D UefiCpuPkg/Library/CpuExceptionHandlerLib/UnitTest/PeiCpuExceptionHandle= rLibUnitTest.inf=0D --=20 2.39.1.windows.1