From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by mx.groups.io with SMTP id smtpd.web08.7408.1654754640423369655 for ; Wed, 08 Jun 2022 23:04:01 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=C0l1Qo+Q; spf=pass (domain: intel.com, ip: 134.134.136.65, 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=1654754640; x=1686290640; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=iiNXRA86FgQHi6aSEiUfidKMFMNUHRfjhJdSi1YeLPM=; b=C0l1Qo+Q4L1L645fVlJtrfcx5sDRvmkDkmnDpAefCj9gKW//5a2tPQMG 4X7yCXJ4ZlCP0gfjwT3k+i5xfZnFf07qkbqWsD/5pcZRevZa8qqIHX7OI Fst3dQjapyQZusHXKKDjnFLQvZecwr1y4jtO++Y3Sgb1JVaT90HTmiG4K tUosQBVfmgc3dcVmoLljaY6DWtiPhtesCDSyNpl1MxJoFuTtQ0+r0kQje ZdNbC/TMX/yQEWtotp+ntjPbSsWgq/l47VurHLZVeKlOKZfAAJW+N51/l L7HgxONvt7g53DvcY7qTKzTCPVvM+0QW52aKBbFKXCGJopbkz/ckqLTn0 w==; X-IronPort-AV: E=McAfee;i="6400,9594,10372"; a="278316596" X-IronPort-AV: E=Sophos;i="5.91,287,1647327600"; d="scan'208";a="278316596" Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 08 Jun 2022 23:03:50 -0700 X-IronPort-AV: E=Sophos;i="5.91,287,1647327600"; d="scan'208";a="566239922" Received: from jvang-mobl.amr.corp.intel.com ([10.209.91.16]) by orsmga002-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 08 Jun 2022 23:03:50 -0700 From: "Judah Vang" To: devel@edk2.groups.io Cc: Jian J Wang , Ard Biesheuvel , Leif Lindholm , Nishant C Mistry Subject: [PATCH v3 20/28] ArmVirtPkg: Add reference to ProtectedVariableNull Date: Wed, 8 Jun 2022 23:03:14 -0700 Message-Id: <20220609060322.3491-21-judah.vang@intel.com> X-Mailer: git-send-email 2.35.1.windows.2 In-Reply-To: <20220609060322.3491-1-judah.vang@intel.com> References: <20220609060322.3491-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 otherwise build fails. Cc: Jian J Wang Cc: Ard Biesheuvel Cc: Leif Lindholm Cc: Nishant C Mistry Signed-off-by: Jian J Wang Signed-off-by: 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 aa0ce61630f7..cdebd94a9fce 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.35.1.windows.2