From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mx.groups.io with SMTP id smtpd.web11.7675.1681195769961994646 for ; Mon, 10 Apr 2023 23:49:47 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=KO7+C8Xk; spf=pass (domain: intel.com, ip: 192.55.52.43, mailfrom: dun.tan@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1681195787; x=1712731787; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=kljzQBFKVYGMcat5kZWmUee012ptueiJ2yoyiu+RnJo=; b=KO7+C8XkazTEa9F4MQOh6XSWMy987CWopj3hozTdKVxy8tbK+XoBe5cl q4MZJQIUzF+Bh0rf8HuxE7CXFciHuB2m2dxHbDNLO/3gQdQHtrc7ZJVeF Vor7JsH7M9JRuXjAiZCF1uXrcZyLXE+aSke4TKbbm+PYPUxMMyvR9cwAg puY6G+jwLuVtL9ioEoJG5cykfAyJJhm1+UNVP5GPTPWHmWXjJwlBGhEmv zNDCsy6PxNpi+QljBcJy3a4wcuJHuf3sOwcB02pBHxZtlCInqJQkhzq6V hkLiOsoMCH2kKgcbGmon8Td0lNirtnNjoeOumvjsAx2r5sqVO3e8m4w/2 g==; X-IronPort-AV: E=McAfee;i="6600,9927,10676"; a="429829184" X-IronPort-AV: E=Sophos;i="5.98,336,1673942400"; d="scan'208";a="429829184" Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 10 Apr 2023 23:49:47 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10676"; a="757704572" X-IronPort-AV: E=Sophos;i="5.98,336,1673942400"; d="scan'208";a="757704572" Received: from shwdeopenlab702.ccr.corp.intel.com ([10.239.55.92]) by fmsmga004-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 10 Apr 2023 23:49:44 -0700 From: "duntan" To: devel@edk2.groups.io Cc: Eric Dong , Ray Ni , Rahul Kumar , Gerd Hoffmann Subject: [PATCH 5/7] UefiCpuPkg: Add SortLib required by PiSmmCpuDxe in DSC Date: Tue, 11 Apr 2023 14:49:10 +0800 Message-Id: <20230411064912.978-6-dun.tan@intel.com> X-Mailer: git-send-email 2.31.1.windows.1 In-Reply-To: <20230411064912.978-1-dun.tan@intel.com> References: <20230411064912.978-1-dun.tan@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Add SortLib required by PiSmmCpuDxe in UefiCpuPkg.dsc Signed-off-by: Dun Tan Cc: Eric Dong Cc: Ray Ni Cc: Rahul Kumar Cc: Gerd Hoffmann --- UefiCpuPkg/UefiCpuPkg.dsc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/UefiCpuPkg/UefiCpuPkg.dsc b/UefiCpuPkg/UefiCpuPkg.dsc index d85d56916f..a00667d850 100644 --- a/UefiCpuPkg/UefiCpuPkg.dsc +++ b/UefiCpuPkg/UefiCpuPkg.dsc @@ -1,7 +1,7 @@ ## @file # UefiCpuPkg Package # -# Copyright (c) 2007 - 2022, Intel Corporation. All rights reserved.
+# Copyright (c) 2007 - 2023, Intel Corporation. All rights reserved.
# # SPDX-License-Identifier: BSD-2-Clause-Patent # @@ -66,6 +66,7 @@ UnitTestLib|UnitTestFrameworkPkg/Library/UnitTestLib/UnitTestLib.inf UnitTestPersistenceLib|UnitTestFrameworkPkg/Library/UnitTestPersistenceLibNull/UnitTestPersistenceLibNull.inf UnitTestResultReportLib|UnitTestFrameworkPkg/Library/UnitTestResultReportLib/UnitTestResultReportLibDebugLib.inf + SortLib|MdeModulePkg/Library/BaseSortLib/BaseSortLib.inf [LibraryClasses.common.SEC] PlatformSecLib|UefiCpuPkg/Library/PlatformSecLibNull/PlatformSecLibNull.inf -- 2.39.1.windows.1