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.web10.6166.1662861149839653141 for ; Sat, 10 Sep 2022 18:52:30 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=P2m8OpEM; spf=pass (domain: intel.com, ip: 192.55.52.43, mailfrom: isaac.w.oram@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1662861150; x=1694397150; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=jDcNPkDzTJsnGdQpt2HlCrn5gd6rpoPm0I5OfhX50mc=; b=P2m8OpEMdme3usxUYbTT9ZFcdym66t2CIwtTUqgeWWRtcyrZ0KLX7z6A 3K/zfiPf6zD3HYij7Rq8dYzU/adaUDsGgBRRsXxhBmsb21oQgpgYoBB1v ErRyktUn0e5lJU9xBkBFbIkmla+iRSHNIBOtSEXC6YOQGZREwedcLq0zT vLr/RYv3xM7F8kCMI/GdpWWyjz9D1KzoQoEHK2lKtqZOIT7IZc2uNM9Oe Om9x+mkR0aP/xJBDFLgzJTj5lHTdtqXjhPNiNXVPG9XfrTevOaYSX67T2 cWwBwwJDLZKHiN/flXc5Anst/cDlzh5LCIlqn67iyV9LiGDAxSZUUSVF0 w==; X-IronPort-AV: E=McAfee;i="6500,9779,10466"; a="383981494" X-IronPort-AV: E=Sophos;i="5.93,307,1654585200"; d="scan'208";a="383981494" Received: from orsmga005.jf.intel.com ([10.7.209.41]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 10 Sep 2022 18:52:28 -0700 X-IronPort-AV: E=Sophos;i="5.93,307,1654585200"; d="scan'208";a="791199291" Received: from iworam-desk.amr.corp.intel.com ([10.24.80.243]) by orsmga005-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 10 Sep 2022 18:52:28 -0700 From: "Isaac Oram" To: devel@edk2.groups.io Cc: Isaac Oram , Chasel Chiu , Nate DeSimone , Liming Gao , Eric Dong Subject: [edk2-devel][edk2-platforms][PATCH V2 1/3] MinPlatformPkg/Include: Add PEI DevicePathLib instance Date: Sat, 10 Sep 2022 18:52:16 -0700 Message-Id: X-Mailer: git-send-email 2.36.1.windows.1 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit PEI DevicePathLib instance required by NvmExpressPei.inf due to recent change. Cc: Chasel Chiu Cc: Nate DeSimone Cc: Liming Gao Cc: Eric Dong Signed-off-by: Isaac Oram --- Platform/Intel/MinPlatformPkg/Include/Dsc/CorePeiLib.dsc | 1 + 1 file changed, 1 insertion(+) diff --git a/Platform/Intel/MinPlatformPkg/Include/Dsc/CorePeiLib.dsc b/Platform/Intel/MinPlatformPkg/Include/Dsc/CorePeiLib.dsc index 9bac751eaf..4424ebaecc 100644 --- a/Platform/Intel/MinPlatformPkg/Include/Dsc/CorePeiLib.dsc +++ b/Platform/Intel/MinPlatformPkg/Include/Dsc/CorePeiLib.dsc @@ -27,6 +27,7 @@ MemoryAllocationLib|MdePkg/Library/PeiMemoryAllocationLib/PeiMemoryAllocationLib.inf ReportStatusCodeLib|MdeModulePkg/Library/PeiReportStatusCodeLib/PeiReportStatusCodeLib.inf ExtractGuidedSectionLib|MdePkg/Library/PeiExtractGuidedSectionLib/PeiExtractGuidedSectionLib.inf + DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLibBase.inf LockBoxLib|MdeModulePkg/Library/SmmLockBoxLib/SmmLockBoxPeiLib.inf CpuExceptionHandlerLib|UefiCpuPkg/Library/CpuExceptionHandlerLib/SecPeiCpuExceptionHandlerLib.inf -- 2.36.1.windows.1