From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by mx.groups.io with SMTP id smtpd.web09.1000.1648250924288850149 for ; Fri, 25 Mar 2022 16:28:45 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=Jn2hAHe3; spf=pass (domain: intel.com, ip: 192.55.52.93, 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=1648250925; x=1679786925; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=CT/Wla+faUp27ErnBzEzPLUbM01SGnKAhyMzcSp1Uzc=; b=Jn2hAHe3zO3sH0ZeyjcbpDdsrt9WdxXIxwghXj0Bh+wpchXCsfzGxKFp S8jXy3Li5PHAvfBg40MxjdjQVLJftEQ+7uU1W8iC7nkWXv0uDImUhwX+x a5aDjEKuPYgjtxOM3HG/CmreePcXNOYO5hMg0skgEvdSrFfL7t6zcyyCj yHjC6DhloniL3fqR8UiqhUs2A2X8Q/K6nOWbjXTixZR/oWiEpyqY2STav k7L5Oxq07fjCTOKOMYeq1tifQsZya95v1TuS/2+Zq175ApMbnmL6ubALo 1kY1/1mzLB+808hGXFS6D01Hn8Kd1GZAzJoZvntGvWGhEOI0b+O+ZMBhU w==; X-IronPort-AV: E=McAfee;i="6200,9189,10297"; a="256309531" X-IronPort-AV: E=Sophos;i="5.90,211,1643702400"; d="scan'208";a="256309531" Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Mar 2022 16:28:44 -0700 X-IronPort-AV: E=Sophos;i="5.90,211,1643702400"; d="scan'208";a="638366593" Received: from jvang-mobl.amr.corp.intel.com ([10.212.95.18]) by fmsmga003-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Mar 2022 16:28:44 -0700 From: "Judah Vang" To: devel@edk2.groups.io Cc: Judah Vang , Jian J Wang , Ard Biesheuvel , Leif Lindholm , Nishant C Mistry Subject: [PATCH v1 20/28] ArmVirtPkg: Add reference to ProtectedVariableNull Date: Fri, 25 Mar 2022 16:28:17 -0700 Message-Id: <20220325232825.2167-16-judah.vang@intel.com> X-Mailer: git-send-email 2.35.1.windows.2 In-Reply-To: <20220325232825.2167-1-judah.vang@intel.com> References: <20220325232825.2167-1-judah.vang@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit REF: https://bugzilla.tianocore.org/show_bug.cgi?id=2594 Need reference to ProtectVariableNullLib. Cc: Jian J Wang Cc: Ard Biesheuvel Cc: Leif Lindholm Cc: Nishant C Mistry Signed-off-by: Judah Vang --- ArmVirtPkg/ArmVirtQemu.dsc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ArmVirtPkg/ArmVirtQemu.dsc b/ArmVirtPkg/ArmVirtQemu.dsc index b2b0d304d335..1e4973f5676f 100644 --- a/ArmVirtPkg/ArmVirtQemu.dsc +++ b/ArmVirtPkg/ArmVirtQemu.dsc @@ -1,7 +1,7 @@ # # Copyright (c) 2011-2015, ARM Limited. All rights reserved. # Copyright (c) 2014, Linaro Limited. All rights reserved. -# Copyright (c) 2015 - 2020, Intel Corporation. All rights reserved. +# Copyright (c) 2015 - 2022, Intel Corporation. All rights reserved. # # SPDX-License-Identifier: BSD-2-Clause-Patent # @@ -81,6 +81,7 @@ [LibraryClasses.common] PciSegmentLib|MdePkg/Library/BasePciSegmentLibPci/BasePciSegmentLibPci.inf PciHostBridgeLib|OvmfPkg/Fdt/FdtPciHostBridgeLib/FdtPciHostBridgeLib.inf PciHostBridgeUtilityLib|OvmfPkg/Library/PciHostBridgeUtilityLib/PciHostBridgeUtilityLib.inf + ProtectedVariableLib|MdeModulePkg/Library/ProtectedVariableLibNull/ProtectedVariableLibNull.inf !if $(TPM2_ENABLE) == TRUE Tpm2CommandLib|SecurityPkg/Library/Tpm2CommandLib/Tpm2CommandLib.inf -- 2.26.2.windows.1