From nobody Thu Oct 31 00:23:17 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+89315+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+89315+1787277+3901457@groups.io; dmarc=fail(p=none dis=none) header.from=linux.microsoft.com ARC-Seal: i=1; a=rsa-sha256; t=1650939563; cv=none; d=zohomail.com; s=zohoarc; b=S0zdS9yfICh01sFilMXYx7J/msRY3tcIIRqWFqb0WlAPROCpe50mn2mdv5fvhXz2reSBh40BGsJW1CpC3xj2OqRdtf9Sd2HkGmO9ThmnduKryjGALVEC+HyuFZ2/xxigPDag/tsL1sncRM1/glTYOcNH4hDMxDzRGXOZyc0PhIQ= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1650939563; 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=74Gvqju1cVhJsj9Twvnz/Jmf5lkfQWveVe/v/hfm+DI=; b=a3YBFsEbHjWrkLuQ4MKRrra3UQcyynyaDmKBIpfhTsaVId9wi9c5VRWeYh4HtoOuYjeVpLXOkYyec+oFSCsMaOmuFUoN3BH12t1kjtx+pFTYqWxGjrohJSIzv+3JtjY7gb9pau3bNVoyZoGIj+uONX36z8NsqUCj+c3boh4QTwI= 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+89315+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 16509395633421001.1437867768051; Mon, 25 Apr 2022 19:19:23 -0700 (PDT) Return-Path: X-Received: by 127.0.0.2 with SMTP id srqtYY1788612x1urm7JCON1; Mon, 25 Apr 2022 19:19:23 -0700 X-Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mx.groups.io with SMTP id smtpd.web09.1418.1650939562562447607 for ; Mon, 25 Apr 2022 19:19:22 -0700 X-Received: from localhost.localdomain (unknown [47.195.228.134]) by linux.microsoft.com (Postfix) with ESMTPSA id A147820E8CBD; Mon, 25 Apr 2022 19:19:21 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com A147820E8CBD From: "Michael Kubacki" To: devel@edk2.groups.io Cc: Abner Chang , Gilbert Chen , Daniel Schaefer , Michael D Kinney Subject: [edk2-devel] [edk2-platforms][PATCH v2 07/11] U5SeriesPkg: Add VariableFlashInfoLib Date: Mon, 25 Apr 2022 22:18:30 -0400 Message-Id: <20220426021834.1392-8-mikuback@linux.microsoft.com> In-Reply-To: <20220426021834.1392-1-mikuback@linux.microsoft.com> References: <20220426021834.1392-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: CufgJtuuTezPIY21vapyFvtVx1787277AA= Content-Transfer-Encoding: quoted-printable DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=groups.io; q=dns/txt; s=20140610; t=1650939563; bh=MV2NlmiB1qo8DbxYKN7S3LZmdfDhclXdIAHFwinIpqA=; h=Cc:Date:From:Reply-To:Subject:To; b=TDb6wkr4c7bTG16646XVWx/zpuImoAZcCE2oYQhOozNeEvQeEiNdifl5KavU9alzBWm llp3QQAbvhI/ztpoLpWRhJ+9VRhT66qgEPzydXZAMnzepajeLwu8Csp9hbKwBgTNM47mj f+O4BedeNMm/fOk62izp80EoZdHTcLgjj2k= X-ZohoMail-DKIM: pass (identity @groups.io) X-ZM-MESSAGEID: 1650939564035100005 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: Michael D Kinney 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 (#89315): https://edk2.groups.io/g/devel/message/89315 Mute This Topic: https://groups.io/mt/90700346/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-