From nobody Wed May 15 07:26:36 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) client-ip=66.175.222.108; envelope-from=bounce+27952+89149+1787277+3901457@groups.io; helo=mail02.groups.io; Authentication-Results: mx.zohomail.com; dkim=pass; spf=pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce+27952+89149+1787277+3901457@groups.io; dmarc=fail(p=none dis=none) header.from=linux.microsoft.com ARC-Seal: i=1; a=rsa-sha256; t=1650487483; cv=none; d=zohomail.com; s=zohoarc; b=kupoWgmVfdTI5zy9K0+PoC8r/GnomNH2iPjYy6SnGd/j836FdyGrtBYjk+HxVIjnD9Hy4uK7nE9ogXPVSAvjpzvSEzczU2WUEn8Yywph9zprg+TfB3oUGpN8ZCPAaQHbuKb1T8lbMygKfnmWWP+We7nlMVn65ulqi92ISA+xTI4= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1650487483; h=Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Subscribe:List-Id:List-Help:List-Unsubscribe:MIME-Version:Message-ID:Reply-To:References:Sender:Subject:To; bh=kBKTw/PPofd3GyU8tba8wh1kD5aCwxnCCwt8zyxcbl0=; b=SHtLWoPX35h05pEndRZhePMrlogwCwstVjVU5gZzcJo+rjfAD/5D1f/9fCJsB2iOg2mUC5qFR/xnh2XZMUhoE28fh35b6UUWQdfSJqM+g9KwVYMcmgRhv107NLZp4Jb3DrF2kz6S5h3Z+qHAIs0SzZS7NDqY4W751tsQ2qCjluE= ARC-Authentication-Results: i=1; mx.zohomail.com; dkim=pass; spf=pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce+27952+89149+1787277+3901457@groups.io; dmarc=fail header.from= (p=none dis=none) Received: from mail02.groups.io (mail02.groups.io [66.175.222.108]) by mx.zohomail.com with SMTPS id 1650487483609611.4378318811653; Wed, 20 Apr 2022 13:44:43 -0700 (PDT) Return-Path: X-Received: by 127.0.0.2 with SMTP id Q3FsYY1788612xED0rv1S0L4; Wed, 20 Apr 2022 13:44:43 -0700 X-Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mx.groups.io with SMTP id smtpd.web08.13101.1650487482721024471 for ; Wed, 20 Apr 2022 13:44:42 -0700 X-Received: from localhost.localdomain (unknown [47.201.46.36]) by linux.microsoft.com (Postfix) with ESMTPSA id D6B3F20E2D2F; Wed, 20 Apr 2022 13:44:41 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com D6B3F20E2D2F From: "Michael Kubacki" To: devel@edk2.groups.io Cc: Ard Biesheuvel , Leif Lindholm Subject: [edk2-devel] [edk2-platforms][PATCH v1 01/10] OverdriveBoard: Add VariableFlashInfoLib Date: Wed, 20 Apr 2022 16:44:11 -0400 Message-Id: <20220420204420.1132-2-mikuback@linux.microsoft.com> In-Reply-To: <20220420204420.1132-1-mikuback@linux.microsoft.com> References: <20220420204420.1132-1-mikuback@linux.microsoft.com> MIME-Version: 1.0 Precedence: Bulk List-Unsubscribe: List-Subscribe: List-Help: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Reply-To: devel@edk2.groups.io,mikuback@linux.microsoft.com X-Gm-Message-State: czlEhzq2QhzelWQdrPEncRS6x1787277AA= Content-Transfer-Encoding: quoted-printable DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=groups.io; q=dns/txt; s=20140610; t=1650487483; bh=2matR5fLHIEjA5S86SkujPkAisx6kVyLMtf4ji96IWc=; h=Cc:Date:From:Reply-To:Subject:To; b=Ip3EgLDzTnRP+OHq097ITkhRV/6NmIgHWjAxe0Rdbn0hBC92LxwZvdf09sDUMmh1J8s VafJC+hgy2LC6xirPy5B/O8+2y8V7cKu9jQiMzK6sFJilLi0mR9A12sGLpVhDkhOd723D QL7YwW3ohFXXWercCTsS13Sbk+sxQpJcjC8= X-ZohoMail-DKIM: pass (identity @groups.io) X-ZM-MESSAGEID: 1650487483795100001 Content-Type: text/plain; charset="utf-8" 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 --- Platform/AMD/OverdriveBoard/OverdriveBoard.dsc | 1 + 1 file changed, 1 insertion(+) diff --git a/Platform/AMD/OverdriveBoard/OverdriveBoard.dsc b/Platform/AMD/= OverdriveBoard/OverdriveBoard.dsc index fceb8b64dfde..236e8f1db3dd 100644 --- a/Platform/AMD/OverdriveBoard/OverdriveBoard.dsc +++ b/Platform/AMD/OverdriveBoard/OverdriveBoard.dsc @@ -125,6 +125,7 @@ [LibraryClasses.common] OpensslLib|CryptoPkg/Library/OpensslLib/OpensslLib.inf RngLib|MdePkg/Library/DxeRngLib/DxeRngLib.inf TlsLib|CryptoPkg/Library/TlsLib/TlsLib.inf + VariableFlashInfoLib|MdeModulePkg/Library/BaseVariableFlashInfoLib/BaseV= ariableFlashInfoLib.inf VariablePolicyHelperLib|MdeModulePkg/Library/VariablePolicyHelperLib/Var= iablePolicyHelperLib.inf VariablePolicyLib|MdeModulePkg/Library/VariablePolicyLib/VariablePolicyL= ib.inf =20 --=20 2.28.0.windows.1 -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#89149): https://edk2.groups.io/g/devel/message/89149 Mute This Topic: https://groups.io/mt/90592907/1787277 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org] -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- From nobody Wed May 15 07:26:36 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) client-ip=66.175.222.108; envelope-from=bounce+27952+89150+1787277+3901457@groups.io; helo=mail02.groups.io; Authentication-Results: mx.zohomail.com; dkim=pass; spf=pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce+27952+89150+1787277+3901457@groups.io; dmarc=fail(p=none dis=none) header.from=linux.microsoft.com ARC-Seal: i=1; a=rsa-sha256; t=1650487487; cv=none; d=zohomail.com; s=zohoarc; b=kh6uv6iWE+qf6Jt5KzCdOXlzfl8VVl7yrwa6liqPuVaCwh6El2ISTmjYRPxhsXDNu/DebKK5zPOodLYvRAgRqtNjXfDv2v8kPdE0mK8+C2UkjN2CsKS7Yu4XYXnHnxE+gcbaMIR6YK9evLbdLkzh5zNEQbfA8jsJ5IRwhAGumWY= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1650487487; h=Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Subscribe:List-Id:List-Help:List-Unsubscribe:MIME-Version:Message-ID:Reply-To:References:Sender:Subject:To; bh=jrrF0DcoNb6tfgeAAzAiX9oiOsS4Pt/CLqHUsS04iBM=; b=nedD65xlMf9BEfhRzA2X6h9+wIUiHncpIhqI63wKoM5+VqLbgpiBbHX2WN7tcreZtsRvQ+MCj8rIvj7cFDalds/r85Cemzc6NvnAulXuRYJIg8Eooe891jGq0oIFLbJh+zas+JIt8m5cDNzUhtdWjU4jUAuFuFdglxc2iGr/X5g= ARC-Authentication-Results: i=1; mx.zohomail.com; dkim=pass; spf=pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce+27952+89150+1787277+3901457@groups.io; dmarc=fail header.from= (p=none dis=none) Received: from mail02.groups.io (mail02.groups.io [66.175.222.108]) by mx.zohomail.com with SMTPS id 1650487487898663.640223254829; Wed, 20 Apr 2022 13:44:47 -0700 (PDT) Return-Path: X-Received: by 127.0.0.2 with SMTP id s3khYY1788612xiadwEabVfh; Wed, 20 Apr 2022 13:44:47 -0700 X-Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mx.groups.io with SMTP id smtpd.web11.13003.1650487486910542032 for ; Wed, 20 Apr 2022 13:44:47 -0700 X-Received: from localhost.localdomain (unknown [47.201.46.36]) by linux.microsoft.com (Postfix) with ESMTPSA id D851220E2D2F; Wed, 20 Apr 2022 13:44:45 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com D851220E2D2F From: "Michael Kubacki" To: devel@edk2.groups.io Cc: Ard Biesheuvel , Leif Lindholm Subject: [edk2-devel] [edk2-platforms][PATCH v1 02/10] BeagleBoardPkg: Add VariableFlashInfoLib Date: Wed, 20 Apr 2022 16:44:12 -0400 Message-Id: <20220420204420.1132-3-mikuback@linux.microsoft.com> In-Reply-To: <20220420204420.1132-1-mikuback@linux.microsoft.com> References: <20220420204420.1132-1-mikuback@linux.microsoft.com> MIME-Version: 1.0 Precedence: Bulk List-Unsubscribe: List-Subscribe: List-Help: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Reply-To: devel@edk2.groups.io,mikuback@linux.microsoft.com X-Gm-Message-State: 79gRA5dM6TZTGDTMIC7FcDjJx1787277AA= Content-Transfer-Encoding: quoted-printable DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=groups.io; q=dns/txt; s=20140610; t=1650487487; bh=VognwM4o8zuyjUeQA9+31HBQrTPE+EgRqUEDub6I6p0=; h=Cc:Date:From:Reply-To:Subject:To; b=qisVl113a9R8yFxsD9QaHpYB2ln2K4Oyxip7k54e5dOe2rD3t9x7c3wbyqy2T0Qr+zd 9XZH//HXtk2QbBDf6Kms+QUDUz+1Oe5cjteP/Wt0q0raKC8Y5rwgzTOOfkaFPozVAeUjT prqr6noDKdOTUbbaXDk8ueXAXLfla3QOWow= X-ZohoMail-DKIM: pass (identity @groups.io) X-ZM-MESSAGEID: 1650487489844100001 Content-Type: text/plain; charset="utf-8" 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 --- Platform/BeagleBoard/BeagleBoardPkg/BeagleBoardPkg.dsc | 1 + 1 file changed, 1 insertion(+) diff --git a/Platform/BeagleBoard/BeagleBoardPkg/BeagleBoardPkg.dsc b/Platf= orm/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/AuthVariableLib= Null.inf TpmMeasurementLib|MdeModulePkg/Library/TpmMeasurementLibNull/TpmMeasurem= entLibNull.inf VarCheckLib|MdeModulePkg/Library/VarCheckLib/VarCheckLib.inf + VariableFlashInfoLib|MdeModulePkg/Library/BaseVariableFlashInfoLib/BaseV= ariableFlashInfoLib.inf VariablePolicyHelperLib|MdeModulePkg/Library/VariablePolicyHelperLib/Var= iablePolicyHelperLib.inf =20 UefiDecompressLib|MdePkg/Library/BaseUefiDecompressLib/BaseUefiDecompres= sLib.inf --=20 2.28.0.windows.1 -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#89150): https://edk2.groups.io/g/devel/message/89150 Mute This Topic: https://groups.io/mt/90592911/1787277 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org] -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- From nobody Wed May 15 07:26:36 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) client-ip=66.175.222.108; envelope-from=bounce+27952+89151+1787277+3901457@groups.io; helo=mail02.groups.io; Authentication-Results: mx.zohomail.com; dkim=pass; spf=pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce+27952+89151+1787277+3901457@groups.io; dmarc=fail(p=none dis=none) header.from=linux.microsoft.com ARC-Seal: i=1; a=rsa-sha256; t=1650487494; cv=none; d=zohomail.com; s=zohoarc; b=la3oWX55AHArBsjPZE83ZDD0U/35rF2+SKHdq72JB/RvP43Nl7YLG9Y7FskguMrDYWnly0H0/xXWcyA0J1BKbgsHTKNHpPf6kC6JDW3Ck0cg1i1gb1DBUmIa0KAJnSdi1jnJ+4i95mZOfN/B4u6ynmp6W6XBmrL/kMTg+apRNfU= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1650487494; h=Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Subscribe:List-Id:List-Help:List-Unsubscribe:MIME-Version:Message-ID:Reply-To:References:Sender:Subject:To; bh=wG7jTVdC7n2gWEiUGyykReJu3xRSJfhvzMwxKQdfyRo=; b=lv2mHhILNoI2gpoIGNA1MJBw5uefWP4vU9vbLRXNwITEMAV8hf1U/+YH1p2rO7Wu4PPrOyHbO+BQ4KgvkO5T7SGexeJGPKFGkijhkjYHT6Hh0sG2CEdaF88B4ezhWx+EcR6FYHgb/J3Fr4MFjJnXQQrVWG/kjaX+N3dYxE/89rs= ARC-Authentication-Results: i=1; mx.zohomail.com; dkim=pass; spf=pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce+27952+89151+1787277+3901457@groups.io; dmarc=fail header.from= (p=none dis=none) Received: from mail02.groups.io (mail02.groups.io [66.175.222.108]) by mx.zohomail.com with SMTPS id 1650487494598181.3418011602513; Wed, 20 Apr 2022 13:44:54 -0700 (PDT) Return-Path: X-Received: by 127.0.0.2 with SMTP id YGwbYY1788612xsgcO2dzAc5; Wed, 20 Apr 2022 13:44:53 -0700 X-Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mx.groups.io with SMTP id smtpd.web08.13103.1650487493459073046 for ; Wed, 20 Apr 2022 13:44:53 -0700 X-Received: from localhost.localdomain (unknown [47.201.46.36]) by linux.microsoft.com (Postfix) with ESMTPSA id 42EEC20E2C10; Wed, 20 Apr 2022 13:44:52 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 42EEC20E2C10 From: "Michael Kubacki" To: devel@edk2.groups.io Cc: Chasel Chiu , Nate DeSimone , Liming Gao , Eric Dong Subject: [edk2-devel] [edk2-platforms][PATCH v1 03/10] MinPlatformPkg: Add VariableFlashInfoLib Date: Wed, 20 Apr 2022 16:44:13 -0400 Message-Id: <20220420204420.1132-4-mikuback@linux.microsoft.com> In-Reply-To: <20220420204420.1132-1-mikuback@linux.microsoft.com> References: <20220420204420.1132-1-mikuback@linux.microsoft.com> MIME-Version: 1.0 Precedence: Bulk List-Unsubscribe: List-Subscribe: List-Help: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Reply-To: devel@edk2.groups.io,mikuback@linux.microsoft.com X-Gm-Message-State: ktISooHgEA5QLDrvx57EWQ9rx1787277AA= Content-Transfer-Encoding: quoted-printable DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=groups.io; q=dns/txt; s=20140610; t=1650487493; bh=UqgifikaYjoVlwD+hP98dSyOOqAyK9f9nxyrAZI0S+E=; h=Cc:Date:From:Reply-To:Subject:To; b=wAgtvfOFuKz+RsI90mchKPib90bdMrdtLV9wK4laQXLj9+zkmuIQmI+mH+OQPdgqelr eJZnq903RIjiHlFcw5yLiLOJXbpJhOcFJnwus6gGMYpbCKcF4L/HjcA2uzHJXXjm6lxWX OLKxOYKDniIBsUmh1xCtHe3VCjXzvfIgxWI= X-ZohoMail-DKIM: pass (identity @groups.io) X-ZM-MESSAGEID: 1650487495869100001 Content-Type: text/plain; charset="utf-8" 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: Chasel Chiu Cc: Nate DeSimone Cc: Liming Gao Cc: Eric Dong Signed-off-by: Michael Kubacki --- Platform/Intel/MinPlatformPkg/Include/Dsc/CoreCommonLib.dsc | 1 + 1 file changed, 1 insertion(+) diff --git a/Platform/Intel/MinPlatformPkg/Include/Dsc/CoreCommonLib.dsc b/= Platform/Intel/MinPlatformPkg/Include/Dsc/CoreCommonLib.dsc index c3d05fc913a7..58a18fae6ec8 100644 --- a/Platform/Intel/MinPlatformPkg/Include/Dsc/CoreCommonLib.dsc +++ b/Platform/Intel/MinPlatformPkg/Include/Dsc/CoreCommonLib.dsc @@ -169,5 +169,6 @@ [LibraryClasses.common] MmUnblockMemoryLib|MdePkg/Library/MmUnblockMemoryLib/MmUnblockMemoryLibN= ull.inf =20 SmbusLib|MdePkg/Library/BaseSmbusLibNull/BaseSmbusLibNull.inf + VariableFlashInfoLib|MdeModulePkg/Library/BaseVariableFlashInfoLib/BaseV= ariableFlashInfoLib.inf VariablePolicyLib|MdeModulePkg/Library/VariablePolicyLib/VariablePolicyL= ib.inf VariablePolicyHelperLib|MdeModulePkg/Library/VariablePolicyHelperLib/Var= iablePolicyHelperLib.inf --=20 2.28.0.windows.1 -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#89151): https://edk2.groups.io/g/devel/message/89151 Mute This Topic: https://groups.io/mt/90592912/1787277 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org] -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- From nobody Wed May 15 07:26:36 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) client-ip=66.175.222.108; envelope-from=bounce+27952+89152+1787277+3901457@groups.io; helo=mail02.groups.io; Authentication-Results: mx.zohomail.com; dkim=pass; spf=pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce+27952+89152+1787277+3901457@groups.io; dmarc=fail(p=none dis=none) header.from=linux.microsoft.com ARC-Seal: i=1; a=rsa-sha256; t=1650487498; cv=none; d=zohomail.com; s=zohoarc; b=WIORL9gwniDjzLeSFW1Yn1q+HXpg9xfPwYHEMe0vDAVgb3UV1p5q1rj0rJTi3i+GU/9Y5/7+NwYrLuxmjZ3yGkGZrww37f16tz59MF68rPJEyigWp7CHy6G/tC1tCMUbRl1stqU6xiAZJjonM0YJj8KlUCeRyjHKmrf45CU0SS8= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1650487498; h=Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Subscribe:List-Id:List-Help:List-Unsubscribe:MIME-Version:Message-ID:Reply-To:References:Sender:Subject:To; bh=jSjbP4SyaMy1NMGrwjyYbARc6KPbsXGQG57zCaeZ9Rk=; b=StAg898m/QeBy7Emuil2oJlmoh2ePYg0PY9N2bp2kuKxJ3I5VEpEDeC45AN4Je1is/uqF6ubJhJix7sVPhDy/lkdkOP16bZ1qGqeEbcAahN386GbTeOb7VZCj4eGgt8X5chK3QqNMtYm8tFFYjqBpXuHmSLwTb3w7Sc6HE3bpeU= ARC-Authentication-Results: i=1; mx.zohomail.com; dkim=pass; spf=pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce+27952+89152+1787277+3901457@groups.io; dmarc=fail header.from= (p=none dis=none) Received: from mail02.groups.io (mail02.groups.io [66.175.222.108]) by mx.zohomail.com with SMTPS id 1650487498460900.2221665444457; Wed, 20 Apr 2022 13:44:58 -0700 (PDT) Return-Path: X-Received: by 127.0.0.2 with SMTP id KRYaYY1788612xN4S0UncjF8; Wed, 20 Apr 2022 13:44:57 -0700 X-Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mx.groups.io with SMTP id smtpd.web08.13105.1650487497199536610 for ; Wed, 20 Apr 2022 13:44:57 -0700 X-Received: from localhost.localdomain (unknown [47.201.46.36]) by linux.microsoft.com (Postfix) with ESMTPSA id 6329B20E2C10; Wed, 20 Apr 2022 13:44:56 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 6329B20E2C10 From: "Michael Kubacki" To: devel@edk2.groups.io Cc: Ard Biesheuvel , Leif Lindholm Subject: [edk2-devel] [edk2-platforms][PATCH v1 04/10] CelloBoard: Add VariableFlashInfoLib Date: Wed, 20 Apr 2022 16:44:14 -0400 Message-Id: <20220420204420.1132-5-mikuback@linux.microsoft.com> In-Reply-To: <20220420204420.1132-1-mikuback@linux.microsoft.com> References: <20220420204420.1132-1-mikuback@linux.microsoft.com> MIME-Version: 1.0 Precedence: Bulk List-Unsubscribe: List-Subscribe: List-Help: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Reply-To: devel@edk2.groups.io,mikuback@linux.microsoft.com X-Gm-Message-State: 7n9DOltLBDej4QOq4fks4ECOx1787277AA= Content-Transfer-Encoding: quoted-printable DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=groups.io; q=dns/txt; s=20140610; t=1650487497; bh=POSwkFyw2SLqnvDhnh4FLUj9b59paP950cDoz4PK/nQ=; h=Cc:Date:From:Reply-To:Subject:To; b=LbQutnqooa9qFXfAkDPOush71oZTb51zkB91483iJtAE0jmqNBAbiVA4YLup9IVQ1pA v2yNARPstqc/75DjisyNw4VgGZe+d8r/CKvfuayTQuoe65woGlKXlsZ9RW7zC05xT2Ipu 5nHnkXPGCVbCNvD5v5kL9W4B3MtBFSwv5GU= X-ZohoMail-DKIM: pass (identity @groups.io) X-ZM-MESSAGEID: 1650487499889100001 Content-Type: text/plain; charset="utf-8" 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 --- Platform/LeMaker/CelloBoard/CelloBoard.dsc | 1 + 1 file changed, 1 insertion(+) diff --git a/Platform/LeMaker/CelloBoard/CelloBoard.dsc b/Platform/LeMaker/= CelloBoard/CelloBoard.dsc index 11d989cf3463..6be8062e60f6 100644 --- a/Platform/LeMaker/CelloBoard/CelloBoard.dsc +++ b/Platform/LeMaker/CelloBoard/CelloBoard.dsc @@ -119,6 +119,7 @@ [LibraryClasses.common] RealTimeClockLib|Silicon/AMD/Styx/Library/RealTimeClockLib/RealTimeClock= Lib.inf TimeBaseLib|EmbeddedPkg/Library/TimeBaseLib/TimeBaseLib.inf =20 + VariableFlashInfoLib|MdeModulePkg/Library/BaseVariableFlashInfoLib/BaseV= ariableFlashInfoLib.inf VariablePolicyLib|MdeModulePkg/Library/VariablePolicyLib/VariablePolicyL= ib.inf CapsuleLib|MdeModulePkg/Library/DxeCapsuleLibNull/DxeCapsuleLibNull.inf UefiBootManagerLib|MdeModulePkg/Library/UefiBootManagerLib/UefiBootManag= erLib.inf --=20 2.28.0.windows.1 -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#89152): https://edk2.groups.io/g/devel/message/89152 Mute This Topic: https://groups.io/mt/90592915/1787277 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org] -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- From nobody Wed May 15 07:26:36 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) client-ip=66.175.222.108; envelope-from=bounce+27952+89153+1787277+3901457@groups.io; helo=mail02.groups.io; Authentication-Results: mx.zohomail.com; dkim=pass; spf=pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce+27952+89153+1787277+3901457@groups.io; dmarc=fail(p=none dis=none) header.from=linux.microsoft.com ARC-Seal: i=1; a=rsa-sha256; t=1650487501; cv=none; d=zohomail.com; s=zohoarc; b=LwvcdExTCwu76U88I30smSciNS6kz8hw8Cp31PL2vT1jbu72YqhrtAG4egrTmlCBBbWAnIwE2IxUqnCdz0hBVD3DpB10C9pU3N9g1rCFZy/yLmQjNVKln8mf2lYJenAyQhvTyx8SCjkM2ZlTTckUS/qhKE9elRRTcVLvYmjOZH0= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1650487501; h=Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Subscribe:List-Id:List-Help:List-Unsubscribe:MIME-Version:Message-ID:Reply-To:References:Sender:Subject:To; bh=w8XLR8kQ7qm5A+VuWv+7OUqsF0KqL31W9js/V7bux/M=; b=N862DThXL2cQ2nb9rk3V2+ryeVV8YwFLC4wxyeMNB98wdVrt9Gilh0MCHHFbQYxFQjJeG2UFx1K5Tp247gDaa0SWUQRv/1tmAXCEeOLv127tJ/vXNtCrFtsY11sM3fug+meyIO3AkKO5YkW8eMlWp0+j6a5lx3wdNTOXBIl0d3I= ARC-Authentication-Results: i=1; mx.zohomail.com; dkim=pass; spf=pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce+27952+89153+1787277+3901457@groups.io; dmarc=fail header.from= (p=none dis=none) Received: from mail02.groups.io (mail02.groups.io [66.175.222.108]) by mx.zohomail.com with SMTPS id 1650487501387905.9970833075777; Wed, 20 Apr 2022 13:45:01 -0700 (PDT) Return-Path: X-Received: by 127.0.0.2 with SMTP id ExRlYY1788612xLl0vtOScP7; Wed, 20 Apr 2022 13:45:01 -0700 X-Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mx.groups.io with SMTP id smtpd.web10.13003.1650487500494116232 for ; Wed, 20 Apr 2022 13:45:00 -0700 X-Received: from localhost.localdomain (unknown [47.201.46.36]) by linux.microsoft.com (Postfix) with ESMTPSA id 7925120E2C10; Wed, 20 Apr 2022 13:44:59 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 7925120E2C10 From: "Michael Kubacki" To: devel@edk2.groups.io Cc: Ard Biesheuvel , Leif Lindholm , Graeme Gregory , Radoslaw Biernacki Subject: [edk2-devel] [edk2-platforms][PATCH v1 05/10] SbsaQemu: Add VariableFlashInfoLib Date: Wed, 20 Apr 2022 16:44:15 -0400 Message-Id: <20220420204420.1132-6-mikuback@linux.microsoft.com> In-Reply-To: <20220420204420.1132-1-mikuback@linux.microsoft.com> References: <20220420204420.1132-1-mikuback@linux.microsoft.com> MIME-Version: 1.0 Precedence: Bulk List-Unsubscribe: List-Subscribe: List-Help: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Reply-To: devel@edk2.groups.io,mikuback@linux.microsoft.com X-Gm-Message-State: TaRbXzycyx8S2seU3LY0ZM5gx1787277AA= Content-Transfer-Encoding: quoted-printable DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=groups.io; q=dns/txt; s=20140610; t=1650487501; bh=yjm9NyH/zxctF7dlN33LwmE7uLyd0lVS5F1MxAwaUY0=; h=Cc:Date:From:Reply-To:Subject:To; b=BT8gUXyRVELcifjdE5pdRbDD6sf4Ptbm9rkXA2kkuYVdrKR2I/7G7bEeR2n1GUtj6ae Bfn/eFmQQk/sc750qU/e4wDf7q39wpYPh4YdzG1J+yTqzRpo7GrJkvE0CDX3UbfeMXXzQ bm7YLO26EdcisftKTcELYmQUWpNxJsvdtT0= X-ZohoMail-DKIM: pass (identity @groups.io) X-ZM-MESSAGEID: 1650487501914100005 Content-Type: text/plain; charset="utf-8" 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 Cc: Graeme Gregory Cc: Radoslaw Biernacki Signed-off-by: Michael Kubacki --- Platform/Qemu/SbsaQemu/SbsaQemu.dsc | 1 + 1 file changed, 1 insertion(+) diff --git a/Platform/Qemu/SbsaQemu/SbsaQemu.dsc b/Platform/Qemu/SbsaQemu/S= bsaQemu.dsc index 1d1a25196e22..97014e2fb630 100644 --- a/Platform/Qemu/SbsaQemu/SbsaQemu.dsc +++ b/Platform/Qemu/SbsaQemu/SbsaQemu.dsc @@ -163,6 +163,7 @@ [LibraryClasses.common] PlatformSecureLib|OvmfPkg/Library/PlatformSecureLib/PlatformSecureLib.inf =20 VarCheckLib|MdeModulePkg/Library/VarCheckLib/VarCheckLib.inf + VariableFlashInfoLib|MdeModulePkg/Library/BaseVariableFlashInfoLib/BaseV= ariableFlashInfoLib.inf VariablePolicyLib|MdeModulePkg/Library/VariablePolicyLib/VariablePolicyL= ib.inf VariablePolicyHelperLib|MdeModulePkg/Library/VariablePolicyHelperLib/Var= iablePolicyHelperLib.inf =20 --=20 2.28.0.windows.1 -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#89153): https://edk2.groups.io/g/devel/message/89153 Mute This Topic: https://groups.io/mt/90592917/1787277 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org] -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- From nobody Wed May 15 07:26:36 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) client-ip=66.175.222.108; envelope-from=bounce+27952+89154+1787277+3901457@groups.io; helo=mail02.groups.io; Authentication-Results: mx.zohomail.com; dkim=pass; spf=pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce+27952+89154+1787277+3901457@groups.io; dmarc=fail(p=none dis=none) header.from=linux.microsoft.com ARC-Seal: i=1; a=rsa-sha256; t=1650487505; cv=none; d=zohomail.com; s=zohoarc; b=TIFtJl8O1YXjoJ5SQ/l9IIOGPb0yfkJvqQsTFOm25SYDSlrsNSBAjGMe1tETospmow+x7Vi6Njy6OZxBMAyGI43y5B4XiVS8FYzenwMZBwN9cc8BcdNxd4KrMpSMNoIcVSKiRNxkQcCGX1kHfZU3ZSRZTzHJLrJHE+hvkyBE100= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1650487505; h=Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Subscribe:List-Id:List-Help:List-Unsubscribe:MIME-Version:Message-ID:Reply-To:References:Sender:Subject:To; bh=rhnpwGhm/wc1fxbD7VG0L2n2HmY/XTCBl4C/Ue5Ukro=; b=ZXDZsxdi5F2WcDcM3KrYvwtfcSx+H+epo4LAGw32Ha/YEw3s6lIpw9E3Ag2ropmQVf324cgKERadIx0m8a6QmNx10fPWF5lHWhfd9db1L8EkiFUpigHCkn4dtb4T1msD/ITu33bFIaW5BeZ1RkZrafQxzY1g5VRFdhGbH/Kz0gs= ARC-Authentication-Results: i=1; mx.zohomail.com; dkim=pass; spf=pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce+27952+89154+1787277+3901457@groups.io; dmarc=fail header.from= (p=none dis=none) Received: from mail02.groups.io (mail02.groups.io [66.175.222.108]) by mx.zohomail.com with SMTPS id 1650487505834439.84100073384866; Wed, 20 Apr 2022 13:45:05 -0700 (PDT) Return-Path: X-Received: by 127.0.0.2 with SMTP id FIIEYY1788612xJnGLMjEWex; Wed, 20 Apr 2022 13:45:05 -0700 X-Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mx.groups.io with SMTP id smtpd.web09.13031.1650487504917650143 for ; Wed, 20 Apr 2022 13:45:05 -0700 X-Received: from localhost.localdomain (unknown [47.201.46.36]) by linux.microsoft.com (Postfix) with ESMTPSA id 1A47E20E2D28; Wed, 20 Apr 2022 13:45:04 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 1A47E20E2D28 From: "Michael Kubacki" To: devel@edk2.groups.io Cc: Ard Biesheuvel , Leif Lindholm , Jeremy Linton Subject: [edk2-devel] [edk2-platforms][PATCH v1 06/10] RaspberryPi: Add VariableFlashInfoLib Date: Wed, 20 Apr 2022 16:44:16 -0400 Message-Id: <20220420204420.1132-7-mikuback@linux.microsoft.com> In-Reply-To: <20220420204420.1132-1-mikuback@linux.microsoft.com> References: <20220420204420.1132-1-mikuback@linux.microsoft.com> MIME-Version: 1.0 Precedence: Bulk List-Unsubscribe: List-Subscribe: List-Help: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Reply-To: devel@edk2.groups.io,mikuback@linux.microsoft.com X-Gm-Message-State: MbwUbWf3R5A3Yi9GqvpCdqqwx1787277AA= Content-Transfer-Encoding: quoted-printable DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=groups.io; q=dns/txt; s=20140610; t=1650487505; bh=cxiFDUtjwCCt9+bpoEGvLCJc8hS747LdYsDhyRa//Xw=; h=Cc:Date:From:Reply-To:Subject:To; b=tcmINXfZP6EsLcLl/XbJM9JobKiZOYCI+iCCkWcqiLOEokE9mmCj8YpTydMrksXW0vg u1UfkdTe8hu3cfkyOEU4b90tekPIClwf8Y/5ra+h+K0CF5oWZinNKoAZlU4a32sgYAxJ4 lYPQ/IHWPb+TMhXS0oHe38yvBcMLNGmezB0= X-ZohoMail-DKIM: pass (identity @groups.io) X-ZM-MESSAGEID: 1650487507955100003 Content-Type: text/plain; charset="utf-8" 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 Cc: Jeremy Linton Signed-off-by: Michael Kubacki Reviewed-by: Jeremy Linton Tested-by: Jeremy Linton --- Platform/RaspberryPi/RPi3/RPi3.dsc | 1 + Platform/RaspberryPi/RPi4/RPi4.dsc | 1 + 2 files changed, 2 insertions(+) diff --git a/Platform/RaspberryPi/RPi3/RPi3.dsc b/Platform/RaspberryPi/RPi3= /RPi3.dsc index 6dc48dc23302..0eed03c097f8 100644 --- a/Platform/RaspberryPi/RPi3/RPi3.dsc +++ b/Platform/RaspberryPi/RPi3/RPi3.dsc @@ -174,6 +174,7 @@ [LibraryClasses.common] AuthVariableLib|MdeModulePkg/Library/AuthVariableLibNull/AuthVariableLib= Null.inf !endif VarCheckLib|MdeModulePkg/Library/VarCheckLib/VarCheckLib.inf + VariableFlashInfoLib|MdeModulePkg/Library/BaseVariableFlashInfoLib/BaseV= ariableFlashInfoLib.inf VariablePolicyLib|MdeModulePkg/Library/VariablePolicyLib/VariablePolicyL= ib.inf VariablePolicyHelperLib|MdeModulePkg/Library/VariablePolicyHelperLib/Var= iablePolicyHelperLib.inf GpioLib|Silicon/Broadcom/Bcm283x/Library/GpioLib/GpioLib.inf diff --git a/Platform/RaspberryPi/RPi4/RPi4.dsc b/Platform/RaspberryPi/RPi4= /RPi4.dsc index a9c0c36bb12b..eabddd7382cf 100644 --- a/Platform/RaspberryPi/RPi4/RPi4.dsc +++ b/Platform/RaspberryPi/RPi4/RPi4.dsc @@ -174,6 +174,7 @@ [LibraryClasses.common] AuthVariableLib|MdeModulePkg/Library/AuthVariableLibNull/AuthVariableLib= Null.inf !endif VarCheckLib|MdeModulePkg/Library/VarCheckLib/VarCheckLib.inf + VariableFlashInfoLib|MdeModulePkg/Library/BaseVariableFlashInfoLib/BaseV= ariableFlashInfoLib.inf VariablePolicyLib|MdeModulePkg/Library/VariablePolicyLib/VariablePolicyL= ib.inf VariablePolicyHelperLib|MdeModulePkg/Library/VariablePolicyHelperLib/Var= iablePolicyHelperLib.inf GpioLib|Silicon/Broadcom/Bcm283x/Library/GpioLib/GpioLib.inf --=20 2.28.0.windows.1 -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#89154): https://edk2.groups.io/g/devel/message/89154 Mute This Topic: https://groups.io/mt/90592924/1787277 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org] -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- From nobody Wed May 15 07:26:36 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) client-ip=66.175.222.108; envelope-from=bounce+27952+89155+1787277+3901457@groups.io; helo=mail02.groups.io; Authentication-Results: mx.zohomail.com; dkim=pass; spf=pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce+27952+89155+1787277+3901457@groups.io; dmarc=fail(p=none dis=none) header.from=linux.microsoft.com ARC-Seal: i=1; a=rsa-sha256; t=1650487510; cv=none; d=zohomail.com; s=zohoarc; b=N5ru0ofPM2Q+JOx6vQLWz6ADnvnXOkCOASYAhJtHL3d9OTD+TgEhEba/QySps6qgW2xzJfu/BFRmI0CPJmrNRFmNvHVAjuK5q1BaFYzYbIRflhSCUdigM7oP/PFhr8GMyhEpmCQGAl5hCY80ioxclh+DnZt1Rg1YUc5FND57g5M= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1650487510; h=Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Subscribe:List-Id:List-Help:List-Unsubscribe:MIME-Version:Message-ID:Reply-To:References:Sender:Subject:To; bh=Ts2Ld1qS0ZPoxLL/7QWte6pNjIBg45T86Z1wVIF7bdI=; b=QMeBFWr9vNLkuy4O2hmgcSmQyT2wH4JFZJXMGCxJFkEJRG7HHGNuI6WwAmYibsvuDVAwV4jzV8pCivSvPwy+Dz5oGpEl+IrSg7PTQgK+uwqio0T0awCP04ji8qSVj7w2n2Urlwuc26HEkufmSjytmTzXMmd5OC4iIYINaArqVv4= ARC-Authentication-Results: i=1; mx.zohomail.com; dkim=pass; spf=pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce+27952+89155+1787277+3901457@groups.io; dmarc=fail header.from= (p=none dis=none) Received: from mail02.groups.io (mail02.groups.io [66.175.222.108]) by mx.zohomail.com with SMTPS id 1650487510806843.7194485404606; Wed, 20 Apr 2022 13:45:10 -0700 (PDT) Return-Path: X-Received: by 127.0.0.2 with SMTP id Ymi5YY1788612xTBdtxBU8uL; Wed, 20 Apr 2022 13:45:10 -0700 X-Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mx.groups.io with SMTP id smtpd.web09.13032.1650487510051612429 for ; Wed, 20 Apr 2022 13:45:10 -0700 X-Received: from localhost.localdomain (unknown [47.201.46.36]) by linux.microsoft.com (Postfix) with ESMTPSA id EBF8820E2D28; Wed, 20 Apr 2022 13:45:08 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com EBF8820E2D28 From: "Michael Kubacki" To: devel@edk2.groups.io Cc: Abner Chang , Gilbert Chen , Daniel Schaefer Subject: [edk2-devel] [edk2-platforms][PATCH v1 07/10] U5SeriesPkg: Add VariableFlashInfoLib Date: Wed, 20 Apr 2022 16:44:17 -0400 Message-Id: <20220420204420.1132-8-mikuback@linux.microsoft.com> In-Reply-To: <20220420204420.1132-1-mikuback@linux.microsoft.com> References: <20220420204420.1132-1-mikuback@linux.microsoft.com> MIME-Version: 1.0 Precedence: Bulk List-Unsubscribe: List-Subscribe: List-Help: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Reply-To: devel@edk2.groups.io,mikuback@linux.microsoft.com X-Gm-Message-State: CkjAciVM6wv59zPjaTIGAESNx1787277AA= Content-Transfer-Encoding: quoted-printable DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=groups.io; q=dns/txt; s=20140610; t=1650487510; bh=pstRwQjrPu1VnXppLXk8T2eqnDfG5UOqddiEvgOmsE0=; h=Cc:Date:From:Reply-To:Subject:To; b=ZvVE006y+BfVfczSZFjtgGVpoJyU+Hk5zydunxKC4TaaGMq20lh7QlXV0wSqIGSncty gMA6ymdPyQTbxco/OVvJHp9Xbzw2O++GICc+AXALQTODaLXqy1wx2dPc/xptrgY3F+yHr gvRAoUwZNCkGMp8gPSuSXMY5EdWn9Pjv7cU= X-ZohoMail-DKIM: pass (identity @groups.io) X-ZM-MESSAGEID: 1650487512185100001 Content-Type: text/plain; charset="utf-8" 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: Abner Chang Cc: Gilbert Chen Cc: Daniel Schaefer Signed-off-by: Michael Kubacki Reviewed-by: Abner Chang --- Platform/SiFive/U5SeriesPkg/FreedomU500VC707Board/U500.dsc | 1 + Platform/SiFive/U5SeriesPkg/FreedomU540HiFiveUnleashedBoard/U540.dsc | 1 + 2 files changed, 2 insertions(+) diff --git a/Platform/SiFive/U5SeriesPkg/FreedomU500VC707Board/U500.dsc b/P= latform/SiFive/U5SeriesPkg/FreedomU500VC707Board/U500.dsc index 318851332a7f..7b36b2c885e0 100644 --- a/Platform/SiFive/U5SeriesPkg/FreedomU500VC707Board/U500.dsc +++ b/Platform/SiFive/U5SeriesPkg/FreedomU500VC707Board/U500.dsc @@ -100,6 +100,7 @@ [LibraryClasses] ShellLib|ShellPkg/Library/UefiShellLib/UefiShellLib.inf UefiBootManagerLib|MdeModulePkg/Library/UefiBootManagerLib/UefiBootManag= erLib.inf FdtLib|EmbeddedPkg/Library/FdtLib/FdtLib.inf + VariableFlashInfoLib|MdeModulePkg/Library/BaseVariableFlashInfoLib/BaseV= ariableFlashInfoLib.inf VariablePolicyHelperLib|MdeModulePkg/Library/VariablePolicyHelperLib/Var= iablePolicyHelperLib.inf =20 # RISC-V Platform Library diff --git a/Platform/SiFive/U5SeriesPkg/FreedomU540HiFiveUnleashedBoard/U5= 40.dsc b/Platform/SiFive/U5SeriesPkg/FreedomU540HiFiveUnleashedBoard/U540.d= sc index 98a6a69ca3ec..26895a75ec2f 100644 --- a/Platform/SiFive/U5SeriesPkg/FreedomU540HiFiveUnleashedBoard/U540.dsc +++ b/Platform/SiFive/U5SeriesPkg/FreedomU540HiFiveUnleashedBoard/U540.dsc @@ -100,6 +100,7 @@ [LibraryClasses] ShellLib|ShellPkg/Library/UefiShellLib/UefiShellLib.inf UefiBootManagerLib|MdeModulePkg/Library/UefiBootManagerLib/UefiBootManag= erLib.inf FdtLib|EmbeddedPkg/Library/FdtLib/FdtLib.inf + VariableFlashInfoLib|MdeModulePkg/Library/BaseVariableFlashInfoLib/BaseV= ariableFlashInfoLib.inf VariablePolicyHelperLib|MdeModulePkg/Library/VariablePolicyHelperLib/Var= iablePolicyHelperLib.inf =20 # RISC-V Platform Library --=20 2.28.0.windows.1 -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#89155): https://edk2.groups.io/g/devel/message/89155 Mute This Topic: https://groups.io/mt/90592926/1787277 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org] -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- From nobody Wed May 15 07:26:36 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) client-ip=66.175.222.108; envelope-from=bounce+27952+89156+1787277+3901457@groups.io; helo=mail02.groups.io; Authentication-Results: mx.zohomail.com; dkim=pass; spf=pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce+27952+89156+1787277+3901457@groups.io; dmarc=fail(p=none dis=none) header.from=linux.microsoft.com ARC-Seal: i=1; a=rsa-sha256; t=1650487514; cv=none; d=zohomail.com; s=zohoarc; b=H+ADQjY7/m3qw0ERKR+zKvuk4yoz9kH59ePEMzgiIPJXCUu1v9b+qVj1N6j+hsW7HG2pqsVDzUGZq4R9B8qi80wHGZVWxksv8sRG/YnSanJ7QcgA7sGTo0Ze5ueGHb+HCGPA3CxEJNw5+/zXx9bwMfHaMDgJ9mWrmQFcf1+u4hg= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1650487514; h=Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Subscribe:List-Id:List-Help:List-Unsubscribe:MIME-Version:Message-ID:Reply-To:References:Sender:Subject:To; bh=h0cjNWIzA8X0Um66prEgFHIiR3hK7mBVWCpPdxQ+HVQ=; b=lVWc2Fjf/3s7bOdtrw/mesDaTEIbkrI7MfLa2kwM+Eqg96uK070IAtdOA6eCrYyXZbVFfAsLXb1sZMyszCKzCgrlXA/bKVKRiCTOX1WBYK2CRYVCoQfqaK79ZiYqbxm4KZypYge/Mnu/IMzvs/wKAin/lAPkOJGk8k5kWpMYX5E= ARC-Authentication-Results: i=1; mx.zohomail.com; dkim=pass; spf=pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce+27952+89156+1787277+3901457@groups.io; dmarc=fail header.from= (p=none dis=none) Received: from mail02.groups.io (mail02.groups.io [66.175.222.108]) by mx.zohomail.com with SMTPS id 1650487514220983.7363044591951; Wed, 20 Apr 2022 13:45:14 -0700 (PDT) Return-Path: X-Received: by 127.0.0.2 with SMTP id fgfFYY1788612x0j2m6nsEHM; Wed, 20 Apr 2022 13:45:13 -0700 X-Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mx.groups.io with SMTP id smtpd.web12.13113.1650487513386681474 for ; Wed, 20 Apr 2022 13:45:13 -0700 X-Received: from localhost.localdomain (unknown [47.201.46.36]) by linux.microsoft.com (Postfix) with ESMTPSA id 7782720E2D2F; Wed, 20 Apr 2022 13:45:12 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 7782720E2D2F From: "Michael Kubacki" To: devel@edk2.groups.io Cc: Ard Biesheuvel , Leif Lindholm , Masami Hiramatsu Subject: [edk2-devel] [edk2-platforms][PATCH v1 08/10] Socionext: Add VariableFlashInfoLib Date: Wed, 20 Apr 2022 16:44:18 -0400 Message-Id: <20220420204420.1132-9-mikuback@linux.microsoft.com> In-Reply-To: <20220420204420.1132-1-mikuback@linux.microsoft.com> References: <20220420204420.1132-1-mikuback@linux.microsoft.com> MIME-Version: 1.0 Precedence: Bulk List-Unsubscribe: List-Subscribe: List-Help: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Reply-To: devel@edk2.groups.io,mikuback@linux.microsoft.com X-Gm-Message-State: KXYc0fC7NUurr8ppwwdtav3ax1787277AA= Content-Transfer-Encoding: quoted-printable DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=groups.io; q=dns/txt; s=20140610; t=1650487513; bh=qBFFStI2fFlsDtefst/wZwe3xi/CymVxq1YavT7t2cs=; h=Cc:Date:From:Reply-To:Subject:To; b=jKk9b6bo3VvsLcdTPZLe1mDjn42CXWWYQ2QgtQ5vq5edVlnv7h6WR1XN0pSj5O62VnY Ufty4+7I7MgyRvm34RxTKR/c4lX5P/Mkm2/3bUfjrLcQG5J9qOBgBF3aoSQnIRYHJDbXG xRglDSzuE9oFcsXRay8Vvz3C1i1kw/Rq8HE= X-ZohoMail-DKIM: pass (identity @groups.io) X-ZM-MESSAGEID: 1650487515994100001 Content-Type: text/plain; charset="utf-8" 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 Cc: Masami Hiramatsu Signed-off-by: Michael Kubacki --- Platform/Socionext/SynQuacerEvalBoard/SynQuacerEvalBoard.dsc | 1 + 1 file changed, 1 insertion(+) diff --git a/Platform/Socionext/SynQuacerEvalBoard/SynQuacerEvalBoard.dsc b= /Platform/Socionext/SynQuacerEvalBoard/SynQuacerEvalBoard.dsc index 690cdef9d91c..a052de49c958 100644 --- a/Platform/Socionext/SynQuacerEvalBoard/SynQuacerEvalBoard.dsc +++ b/Platform/Socionext/SynQuacerEvalBoard/SynQuacerEvalBoard.dsc @@ -128,6 +128,7 @@ [LibraryClasses.common] =20 NorFlashInfoLib|EmbeddedPkg/Library/NorFlashInfoLib/NorFlashInfoLib.inf =20 + VariableFlashInfoLib|MdeModulePkg/Library/BaseVariableFlashInfoLib/BaseV= ariableFlashInfoLib.inf VariablePolicyHelperLib|MdeModulePkg/Library/VariablePolicyHelperLib/Var= iablePolicyHelperLib.inf =20 [LibraryClasses.common.SEC] --=20 2.28.0.windows.1 -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#89156): https://edk2.groups.io/g/devel/message/89156 Mute This Topic: https://groups.io/mt/90592928/1787277 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org] -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- From nobody Wed May 15 07:26:36 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) client-ip=66.175.222.108; envelope-from=bounce+27952+89157+1787277+3901457@groups.io; helo=mail02.groups.io; Authentication-Results: mx.zohomail.com; dkim=pass; spf=pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce+27952+89157+1787277+3901457@groups.io; dmarc=fail(p=none dis=none) header.from=linux.microsoft.com ARC-Seal: i=1; a=rsa-sha256; t=1650487517; cv=none; d=zohomail.com; s=zohoarc; b=c+8/X/r/h/Z8ctwChHy42ld2w/ewKOxQDIaS9o15+kRzjwCUgIQ3syRIlmSUHWVvovAQAOqoKOpx/6q6Hbu9xpDRYaZ/6wb7k7lm/7uyaPb1UWR1F/nEsTfym58f/VsNLRsRiATPayesKq71xgLLbbX02NMYMqt6haJkxakAiq8= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1650487517; h=Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Subscribe:List-Id:List-Help:List-Unsubscribe:MIME-Version:Message-ID:Reply-To:References:Sender:Subject:To; bh=s408WrN0nU9sWFIak42o/w/6aUN/b9KDHh+5c6U2a7w=; b=PNnry+IooH3XBe27+OYBJey1ANhLWOfU4epjC2cJfI+GvsNyE5hZ31F2LoxIWxBL2FU6PU0mb/Q+83fW+jwz7CrlME3aKcasKrsGSRmiBjP5jDYZ8qXZwDAW5CAJfLEP66cISYBG2yeRFjBUCvrGdYqQ4zT7r0AbIHz43x2wcXo= ARC-Authentication-Results: i=1; mx.zohomail.com; dkim=pass; spf=pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce+27952+89157+1787277+3901457@groups.io; dmarc=fail header.from= (p=none dis=none) Received: from mail02.groups.io (mail02.groups.io [66.175.222.108]) by mx.zohomail.com with SMTPS id 1650487517268690.824198407524; Wed, 20 Apr 2022 13:45:17 -0700 (PDT) Return-Path: X-Received: by 127.0.0.2 with SMTP id QbZCYY1788612xSxBGNUlGP8; Wed, 20 Apr 2022 13:45:16 -0700 X-Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mx.groups.io with SMTP id smtpd.web09.13034.1650487516394840792 for ; Wed, 20 Apr 2022 13:45:16 -0700 X-Received: from localhost.localdomain (unknown [47.201.46.36]) by linux.microsoft.com (Postfix) with ESMTPSA id A997D20E2D2F; Wed, 20 Apr 2022 13:45:15 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com A997D20E2D2F From: "Michael Kubacki" To: devel@edk2.groups.io Cc: Ard Biesheuvel , Leif Lindholm Subject: [edk2-devel] [edk2-platforms][PATCH v1 09/10] Softiron: Add VariableFlashInfoLib Date: Wed, 20 Apr 2022 16:44:19 -0400 Message-Id: <20220420204420.1132-10-mikuback@linux.microsoft.com> In-Reply-To: <20220420204420.1132-1-mikuback@linux.microsoft.com> References: <20220420204420.1132-1-mikuback@linux.microsoft.com> MIME-Version: 1.0 Precedence: Bulk List-Unsubscribe: List-Subscribe: List-Help: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Reply-To: devel@edk2.groups.io,mikuback@linux.microsoft.com X-Gm-Message-State: iOCZoMUsX2cD5a0WxWL4K9PXx1787277AA= Content-Transfer-Encoding: quoted-printable DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=groups.io; q=dns/txt; s=20140610; t=1650487516; bh=V2Ltwl85j2Pf0A5BkeE3Sl+eJ4yzru7tzEPADEwitFE=; h=Cc:Date:From:Reply-To:Subject:To; b=xY53R9IH3kqXLT1tBM/H4WDTxPF6AOePjMCY0tj/QiFeRUU985tLp3rCp3Oj//Naj9X 4d7qgvK1DUvppAepj0s8A6X2keBVKwvbePQYujt29Iaylf7vRaLaOpzQsgd5yBri+oxhx jxDvv1nSsiyd2O97Z9ERLNleRXTfjaDpWGo= X-ZohoMail-DKIM: pass (identity @groups.io) X-ZM-MESSAGEID: 1650487518005100005 Content-Type: text/plain; charset="utf-8" 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 --- Platform/SoftIron/Overdrive1000Board/Overdrive1000Board.dsc | 1 + 1 file changed, 1 insertion(+) diff --git a/Platform/SoftIron/Overdrive1000Board/Overdrive1000Board.dsc b/= Platform/SoftIron/Overdrive1000Board/Overdrive1000Board.dsc index 25fafca51852..37ce04f6a9e3 100644 --- a/Platform/SoftIron/Overdrive1000Board/Overdrive1000Board.dsc +++ b/Platform/SoftIron/Overdrive1000Board/Overdrive1000Board.dsc @@ -121,6 +121,7 @@ [LibraryClasses.common] RealTimeClockLib|Silicon/AMD/Styx/Library/RealTimeClockLib/RealTimeClock= Lib.inf TimeBaseLib|EmbeddedPkg/Library/TimeBaseLib/TimeBaseLib.inf =20 + VariableFlashInfoLib|MdeModulePkg/Library/BaseVariableFlashInfoLib/BaseV= ariableFlashInfoLib.inf VariablePolicyHelperLib|MdeModulePkg/Library/VariablePolicyHelperLib/Var= iablePolicyHelperLib.inf VariablePolicyLib|MdeModulePkg/Library/VariablePolicyLib/VariablePolicyL= ib.inf CapsuleLib|MdeModulePkg/Library/DxeCapsuleLibNull/DxeCapsuleLibNull.inf --=20 2.28.0.windows.1 -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#89157): https://edk2.groups.io/g/devel/message/89157 Mute This Topic: https://groups.io/mt/90592930/1787277 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org] -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- From nobody Wed May 15 07:26:36 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) client-ip=66.175.222.108; envelope-from=bounce+27952+89158+1787277+3901457@groups.io; helo=mail02.groups.io; Authentication-Results: mx.zohomail.com; dkim=pass; spf=pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce+27952+89158+1787277+3901457@groups.io; dmarc=fail(p=none dis=none) header.from=linux.microsoft.com ARC-Seal: i=1; a=rsa-sha256; t=1650487520; cv=none; d=zohomail.com; s=zohoarc; b=BJit0g3OSoV/aJkpdOq60P/WPy0cQ5EZqUUtgvJTQSV9udMVX320kBy+UbU9EikAU37aHHAsoLjd2Llsr28lyQ59V4U3R6kHAsN5Sg+3CN7LjxDO6Ex7zlZ0lmCpyHOp3VT8eDaZ8Mi0eCu2T26c+Q65i0YVoAs92zJx/rJ5Vb8= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1650487520; h=Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Subscribe:List-Id:List-Help:List-Unsubscribe:MIME-Version:Message-ID:Reply-To:References:Sender:Subject:To; bh=cPZ13qvWgpOHNHvxe+ciyIqGOYe813l1XVmt+FTPXng=; b=QxxfpQDG5Xoes6UXn4P8Q+wrlsbs4JWtspmQA3F0UVc85an1frim9nbt46WiwegDLWH5HyLhJ5/Eau4Z+XXQtMBB0/3/nqJV/O3hF8aHTT9lPmzzEXSb+TGuQJSlABK2J0lRaebqUXPLyH8SzcnIWnGgyb7pmRdsYVjtEpm6OqY= ARC-Authentication-Results: i=1; mx.zohomail.com; dkim=pass; spf=pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce+27952+89158+1787277+3901457@groups.io; dmarc=fail header.from= (p=none dis=none) Received: from mail02.groups.io (mail02.groups.io [66.175.222.108]) by mx.zohomail.com with SMTPS id 1650487520077503.3832061335934; Wed, 20 Apr 2022 13:45:20 -0700 (PDT) Return-Path: X-Received: by 127.0.0.2 with SMTP id qcFfYY1788612xNvU1WdwkYH; Wed, 20 Apr 2022 13:45:19 -0700 X-Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mx.groups.io with SMTP id smtpd.web10.13009.1650487519324950304 for ; Wed, 20 Apr 2022 13:45:19 -0700 X-Received: from localhost.localdomain (unknown [47.201.46.36]) by linux.microsoft.com (Postfix) with ESMTPSA id 97BC920E2D2F; Wed, 20 Apr 2022 13:45:18 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 97BC920E2D2F From: "Michael Kubacki" To: devel@edk2.groups.io Cc: Sami Mujawar , Ilias Apalodimas Subject: [edk2-devel] [edk2-platforms][PATCH v1 10/10] PlatformStandaloneMmPkg: Add VariableFlashInfoLib Date: Wed, 20 Apr 2022 16:44:20 -0400 Message-Id: <20220420204420.1132-11-mikuback@linux.microsoft.com> In-Reply-To: <20220420204420.1132-1-mikuback@linux.microsoft.com> References: <20220420204420.1132-1-mikuback@linux.microsoft.com> MIME-Version: 1.0 Precedence: Bulk List-Unsubscribe: List-Subscribe: List-Help: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Reply-To: devel@edk2.groups.io,mikuback@linux.microsoft.com X-Gm-Message-State: BP1SWEPqFcQq1hwNtI6gH7Lux1787277AA= Content-Transfer-Encoding: quoted-printable DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=groups.io; q=dns/txt; s=20140610; t=1650487519; bh=4OF6MRILOt50beNqNKVh7Thj73TGZfprBx3VHHuf7p8=; h=Cc:Date:From:Reply-To:Subject:To; b=gQ887/sWSTcNa8bCqVEdU0XwKO5CNJesbfZW4cvRJGTs07X1VXPYn8L7AxWFrGrjw7i /APTZa8tmICTXQer9YHep+YvEPGVR3yLXA0bHtAjSoTyfhXs7BsS1EcdHZb2+arUoZctj hnrSl3sFgHwd29auFSuNx4zyZssQFqQ9fWA= X-ZohoMail-DKIM: pass (identity @groups.io) X-ZM-MESSAGEID: 1650487522018100001 Content-Type: text/plain; charset="utf-8" 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: Sami Mujawar Cc: Ilias Apalodimas Signed-off-by: Michael Kubacki Reviewed-by: Ilias Apalodimas Reviewed-by: Sami Mujawar --- Platform/StandaloneMm/PlatformStandaloneMmPkg/PlatformStandaloneMmRpmb.dsc= | 1 + 1 file changed, 1 insertion(+) diff --git a/Platform/StandaloneMm/PlatformStandaloneMmPkg/PlatformStandalo= neMmRpmb.dsc b/Platform/StandaloneMm/PlatformStandaloneMmPkg/PlatformStanda= loneMmRpmb.dsc index 33364deb1ef0..653029c52fdb 100644 --- a/Platform/StandaloneMm/PlatformStandaloneMmPkg/PlatformStandaloneMmRpm= b.dsc +++ b/Platform/StandaloneMm/PlatformStandaloneMmPkg/PlatformStandaloneMmRpm= b.dsc @@ -34,6 +34,7 @@ [LibraryClasses] ArmLib|ArmPkg/Library/ArmLib/ArmBaseLib.inf BaseLib|MdePkg/Library/BaseLib/BaseLib.inf SafeIntLib|MdePkg/Library/BaseSafeIntLib/BaseSafeIntLib.inf + VariableFlashInfoLib|MdeModulePkg/Library/BaseVariableFlashInfoLib/BaseV= ariableFlashInfoLib.inf VariablePolicyHelperLib|MdeModulePkg/Library/VariablePolicyHelperLib/Var= iablePolicyHelperLib.inf BaseMemoryLib|MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf DebugPrintErrorLevelLib|MdePkg/Library/BaseDebugPrintErrorLevelLib/BaseD= ebugPrintErrorLevelLib.inf --=20 2.28.0.windows.1 -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#89158): https://edk2.groups.io/g/devel/message/89158 Mute This Topic: https://groups.io/mt/90592933/1787277 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org] -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-