From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by mx.groups.io with SMTP id smtpd.web12.13561.1651255513347566730 for ; Fri, 29 Apr 2022 11:05:13 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=B0NkM89K; spf=pass (domain: intel.com, ip: 134.134.136.126, mailfrom: judah.vang@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1651255513; x=1682791513; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=KLFHpOQjynRCHPy/vE7/4CqpZnnxNIE42BPLTAnBtG0=; b=B0NkM89KcEfDvHDXavjEH+LG6cuKb6SdPXWeLBjZ3ibCcafcOfufS8TK vsC63d8JHgGe7cZ+KJcFIFXw4QdpjEyPJ4ffTuyja2trRWAC3Kq/yEp0G 7z8pem1vRiH2BPtyZyboYaN2FqQ5HkpQ/7VRfgZVto3yTomerLkSSwcKG H/R9U7oqhWYjMUNUX6UAxv3UxlB4BDHWOuRhErSxVlHumbqr4I7OMK4+g 79XXV/mxlwkPdqH0yvqSi2FJwfxB/e6J2mo4mnE/2Frx3ldPole8e5kjj tPRBtgxXmwQ2q0m+FBiGiYwRkyMUvYPBlroITAEFR4YiNlo+O9gey5XcZ w==; X-IronPort-AV: E=McAfee;i="6400,9594,10332"; a="248659131" X-IronPort-AV: E=Sophos;i="5.91,186,1647327600"; d="scan'208";a="248659131" Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 29 Apr 2022 11:05:12 -0700 X-IronPort-AV: E=Sophos;i="5.91,186,1647327600"; d="scan'208";a="514955589" Received: from jvang-mobl.amr.corp.intel.com ([10.212.198.238]) by orsmga003-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 29 Apr 2022 11:05:11 -0700 From: "Judah Vang" To: devel@edk2.groups.io Cc: Jian J Wang , Liming Gao , Nishant C Mistry Subject: [Patch v2 04/28] MdeModulePkg: Add reference to new Ppi Guid Date: Fri, 29 Apr 2022 11:04:06 -0700 Message-Id: <20220429180430.3292-5-judah.vang@intel.com> X-Mailer: git-send-email 2.35.1.windows.2 In-Reply-To: <20220429180430.3292-1-judah.vang@intel.com> References: <20220429180430.3292-1-judah.vang@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit REF: https://bugzilla.tianocore.org/show_bug.cgi?id=2594 Add reference to gEfiPeiVariableStoreDiscoveredPpiGuid which contains information whether variable store is available. Cc: Jian J Wang Cc: Liming Gao Cc: Nishant C Mistry Signed-off-by: Jian J Wang Signed-off-by: Nishant C Mistry Signed-off-by: Judah Vang --- MdePkg/Include/Ppi/ReadOnlyVariable2.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/MdePkg/Include/Ppi/ReadOnlyVariable2.h b/MdePkg/Include/Ppi/ReadOnlyVariable2.h index 926c0bc82a43..c5a8470565bb 100644 --- a/MdePkg/Include/Ppi/ReadOnlyVariable2.h +++ b/MdePkg/Include/Ppi/ReadOnlyVariable2.h @@ -2,7 +2,7 @@ This file declares Read-only Variable Service2 PPI. This ppi permits read-only access to the UEFI variable store during the PEI phase. -Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.
+Copyright (c) 2006 - 2022, Intel Corporation. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent @par Revision Reference: @@ -106,4 +106,6 @@ struct _EFI_PEI_READ_ONLY_VARIABLE2_PPI { extern EFI_GUID gEfiPeiReadOnlyVariable2PpiGuid; +extern EFI_GUID gEfiPeiVariableStoreDiscoveredPpiGuid; + #endif -- 2.35.1.windows.2