From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mx.groups.io with SMTP id smtpd.web11.15223.1686826261549526241 for ; Thu, 15 Jun 2023 03:51:02 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=WFjgi/K0; spf=pass (domain: intel.com, ip: 192.55.52.88, 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=1686826262; x=1718362262; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=Coi5DycGzAVQ5eW0IUPaDpPPO0GKl7ZvwTTIRMmUAz0=; b=WFjgi/K0Qe1JLpb+6plfsrA3dPbNWyX/5fGtpqm4xM1kCdkJIXmez5Gs +NYsCmYPntZEQDIX8N4Nn0FUwSM4GiUmg3MFxOQbOU5uj2OANlCKfMoxT nslbXoas1POeugg8IxYv3tbXQGtRR3gogQVpHAykL6CRit/0aykzxSEL9 YNnNZ2LcJ0d8mAZRe9eYNDpcvaRSgWtKhXIlo9/wNzFMP+F3OwzBdBV8j mvlGx5pOUvtKsLnuzzePrv6CTi9fOz/In5Fc5qzaPxXmd32CHCzILA1CR R048dv2ZIk7hBUQrv0XmpoiJBdNcBA0UrwksYuiNew6ZCgD6lfYkx2eaT Q==; X-IronPort-AV: E=McAfee;i="6600,9927,10741"; a="387323051" X-IronPort-AV: E=Sophos;i="6.00,244,1681196400"; d="scan'208";a="387323051" Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 15 Jun 2023 03:51:02 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10741"; a="959156113" X-IronPort-AV: E=Sophos;i="6.00,244,1681196400"; d="scan'208";a="959156113" Received: from shwdeopenlab706.ccr.corp.intel.com ([10.239.55.95]) by fmsmga006.fm.intel.com with ESMTP; 15 Jun 2023 03:51:00 -0700 From: "Ni, Ray" To: devel@edk2.groups.io Cc: Eric Dong , Rahul Kumar , Gerd Hoffmann Subject: [PATCH 1/3] UefiCpuPkg: Include ResetVector in DSC Date: Thu, 15 Jun 2023 18:50:55 +0800 Message-Id: <20230615105057.297-2-ray.ni@intel.com> X-Mailer: git-send-email 2.39.1.windows.1 In-Reply-To: <20230615105057.297-1-ray.ni@intel.com> References: <20230615105057.297-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 Cc: 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