From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by mx.groups.io with SMTP id smtpd.web12.13563.1651255524511770306 for ; Fri, 29 Apr 2022 11:05:25 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=jG8n3zcW; spf=pass (domain: intel.com, ip: 192.55.52.136, 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=1651255525; x=1682791525; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=OaPA5CsqUS5+5Qv1RbpFXOe8nVxZ5+C45KKThd682vs=; b=jG8n3zcWvExSrht9tzQVYb6swMdFQxBPz5ejS1TFTGSCPltq+GvbadLX ya6UhtcNVvHJJL9sSnp0w56LJN6hbSwA4gXaKbVG8obxhaH6hlatjNYgi SQwRGA5GFFZDQzrnp9o24Xk/+u0IAd1mDLmqlfEVGf6wx1OOwEn+RKRyQ 4UzJOpSWqMa0BrGhrQzivXqJyVEhjgWCddBtnLElDxSl3r3dQxTXRkucL dpzcG84X+MkT6q3UoxKbPE7YZnVXo01gzswb0HSHEiWen6/gaCTVdfCaa YazNGFB9cRJRjWiaF7itPDFrsmYbxQh6eZbKwrjOdcsdej6zWQPrUGAVK A==; X-IronPort-AV: E=McAfee;i="6400,9594,10332"; a="246648125" X-IronPort-AV: E=Sophos;i="5.91,186,1647327600"; d="scan'208";a="246648125" Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 29 Apr 2022 11:05:23 -0700 X-IronPort-AV: E=Sophos;i="5.91,186,1647327600"; d="scan'208";a="514955804" 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:23 -0700 From: "Judah Vang" To: devel@edk2.groups.io Cc: Jian J Wang , Andrew Fish , Ray Ni , Nishant C Mistry Subject: [Patch v2 22/28] EmulatorPkg: Add ProtectedVariable reference Date: Fri, 29 Apr 2022 11:04:24 -0700 Message-Id: <20220429180430.3292-23-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 null ProtectedVariableLib. Cc: Jian J Wang Cc: Andrew Fish Cc: Ray Ni Cc: Nishant C Mistry Signed-off-by: Jian J Wang Signed-off-by: Nishant C Mistry Signed-off-by: Judah Vang --- EmulatorPkg/EmulatorPkg.dsc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/EmulatorPkg/EmulatorPkg.dsc b/EmulatorPkg/EmulatorPkg.dsc index 554c13ddb500..4a6d50390db7 100644 --- a/EmulatorPkg/EmulatorPkg.dsc +++ b/EmulatorPkg/EmulatorPkg.dsc @@ -4,7 +4,7 @@ # The Emulation Platform can be used to debug individual modules, prior to creating # a real platform. This also provides an example for how an DSC is created. # -# Copyright (c) 2006 - 2021, Intel Corporation. All rights reserved.
+# Copyright (c) 2006 - 2022, Intel Corporation. All rights reserved.
# Portions copyright (c) 2010 - 2011, Apple Inc. All rights reserved.
# Copyright (c) Microsoft Corporation. # @@ -119,6 +119,7 @@ [LibraryClasses] LockBoxLib|MdeModulePkg/Library/LockBoxNullLib/LockBoxNullLib.inf CpuExceptionHandlerLib|MdeModulePkg/Library/CpuExceptionHandlerLibNull/CpuExceptionHandlerLibNull.inf TpmMeasurementLib|MdeModulePkg/Library/TpmMeasurementLibNull/TpmMeasurementLibNull.inf + ProtectedVariableLib|MdeModulePkg/Library/ProtectedVariableLibNull/ProtectedVariableLibNull.inf VarCheckLib|MdeModulePkg/Library/VarCheckLib/VarCheckLib.inf VariablePolicyLib|MdeModulePkg/Library/VariablePolicyLib/VariablePolicyLibRuntimeDxe.inf VariablePolicyHelperLib|MdeModulePkg/Library/VariablePolicyHelperLib/VariablePolicyHelperLib.inf -- 2.35.1.windows.2