From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mx.groups.io with SMTP id smtpd.web10.1431.1650939546635852944 for ; Mon, 25 Apr 2022 19:19:06 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="body hash did not verify" header.i=@linux.microsoft.com header.s=default header.b=juXFxxjg; spf=pass (domain: linux.microsoft.com, ip: 13.77.154.182, mailfrom: mikuback@linux.microsoft.com) Received: from localhost.localdomain (unknown [47.195.228.134]) by linux.microsoft.com (Postfix) with ESMTPSA id AEED920E8CBD; Mon, 25 Apr 2022 19:19:05 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com AEED920E8CBD DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1650939546; bh=uMWytMkH/k06gYq1xPg/QBFWKymHobTtX5D85O0j8kw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=juXFxxjgqqmo3kQBsUJtlyDG6ngiH5jcdQTVlRzYEd7u6quCrWMrbakwyNUw5NY7X N/KEN60Xfee7NYfo54Jq1NTxZnf+t9emcHPG/+iIGH3rY5UeeJjbbG5XnVsEHtDoiN XCguZVQLuJrmhQQ1gGfkAn8J0sQ8g9PEg8xiMOcw= From: "Michael Kubacki" To: devel@edk2.groups.io Cc: Ard Biesheuvel , Leif Lindholm , Michael D Kinney Subject: [edk2-platforms][PATCH v2 02/11] BeagleBoardPkg: Add VariableFlashInfoLib Date: Mon, 25 Apr 2022 22:18:25 -0400 Message-Id: <20220426021834.1392-3-mikuback@linux.microsoft.com> X-Mailer: git-send-email 2.28.0.windows.1 In-Reply-To: <20220426021834.1392-1-mikuback@linux.microsoft.com> References: <20220426021834.1392-1-mikuback@linux.microsoft.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Michael Kubacki REF:https://bugzilla.tianocore.org/show_bug.cgi?id=3D3479 Adds an instance for the library class VariableFlashInfoLib that was recently introduced in MdeModulePkg. This change is made to allow the new variable driver to build that has a dependency on this library class and does not require any further platform changes. Cc: Ard Biesheuvel Cc: Leif Lindholm Signed-off-by: Michael Kubacki Reviewed-by: Michael D Kinney --- Platform/BeagleBoard/BeagleBoardPkg/BeagleBoardPkg.dsc | 1 + 1 file changed, 1 insertion(+) diff --git a/Platform/BeagleBoard/BeagleBoardPkg/BeagleBoardPkg.dsc b/Pla= tform/BeagleBoard/BeagleBoardPkg/BeagleBoardPkg.dsc index 7df306045d12..2de49fc0932c 100644 --- a/Platform/BeagleBoard/BeagleBoardPkg/BeagleBoardPkg.dsc +++ b/Platform/BeagleBoard/BeagleBoardPkg/BeagleBoardPkg.dsc @@ -137,6 +137,7 @@ [LibraryClasses.common] AuthVariableLib|MdeModulePkg/Library/AuthVariableLibNull/AuthVariableL= ibNull.inf TpmMeasurementLib|MdeModulePkg/Library/TpmMeasurementLibNull/TpmMeasur= ementLibNull.inf VarCheckLib|MdeModulePkg/Library/VarCheckLib/VarCheckLib.inf + VariableFlashInfoLib|MdeModulePkg/Library/BaseVariableFlashInfoLib/Bas= eVariableFlashInfoLib.inf VariablePolicyHelperLib|MdeModulePkg/Library/VariablePolicyHelperLib/V= ariablePolicyHelperLib.inf =20 UefiDecompressLib|MdePkg/Library/BaseUefiDecompressLib/BaseUefiDecompr= essLib.inf --=20 2.28.0.windows.1