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.14269.1667720141472727483 for ; Sun, 06 Nov 2022 00:35:42 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=ZNbxMHdV; spf=pass (domain: intel.com, ip: 192.55.52.88, 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=1667720141; x=1699256141; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=zeRFSNxWZzJOsq+Zrr3u1jMC47dlexny59yvag7KNCg=; b=ZNbxMHdVUta4eTQklyKmBzWMeInrLrKxGVsojPX91U5T6FV3sO2vQupJ 8tnUxpcHWfbxHwRUNRiQ6Tp5me7CoStYSli3IWUVB1CZgoMo7cysGlcf6 hP6r2PiRstQ5KFmOjcAGdObqpUdivdvuuPrDP+HbKwoCYvsoDaevGBRF9 ZYnCH+s3H4Y2dQjBD6LAqTZXWMqOjzBJA5w9NKKECe/A5wwwnkyBw5+yP 7pjoxd4rEDzrA8hEG2I9a3lQp35+PT7jzjoi2YzSzZ2P028HsmiDgYxVY 7XbZJX/50v8Bvl8AmyD14xrOP8/Rk0u0PLqTrE97MSbjnBj6DiaU8x6Ke w==; X-IronPort-AV: E=McAfee;i="6500,9779,10522"; a="336948728" X-IronPort-AV: E=Sophos;i="5.96,142,1665471600"; d="scan'208";a="336948728" Received: from orsmga005.jf.intel.com ([10.7.209.41]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 06 Nov 2022 00:35:24 -0700 X-IronPort-AV: E=McAfee;i="6500,9779,10522"; a="810513425" X-IronPort-AV: E=Sophos;i="5.96,142,1665471600"; d="scan'208";a="810513425" Received: from jvang-mobl.amr.corp.intel.com ([10.209.139.244]) by orsmga005-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 06 Nov 2022 00:35:24 -0700 From: "Judah Vang" To: devel@edk2.groups.io Cc: Jian J Wang , Liming Gao , Nishant C Mistry Subject: [PATCH v5 01/19] MdePkg: Add reference to new Ppi Guid Date: Sun, 6 Nov 2022 00:34:51 -0700 Message-Id: <20221106073509.3071-2-judah.vang@intel.com> X-Mailer: git-send-email 2.35.1.windows.2 In-Reply-To: <20221106073509.3071-1-judah.vang@intel.com> References: <20221106073509.3071-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 Reviewed-by: Jian J Wang --- 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