[edk2-devel] [edk2-platforms PATCH v3 0/2] Add BootDiscoveryPolicyUiLib

Samer El-Haj-Mahmoud samer.el-haj-mahmoud at arm.com
Fri Jul 16 18:24:42 UTC 2021


Yes this depends on https://edk2.groups.io/g/devel/message/77787

Which is still under review

________________________________
From: Ard Biesheuvel <ardb at kernel.org>
Sent: Friday, July 16, 2021 1:31:04 PM
To: Samer El-Haj-Mahmoud <Samer.El-Haj-Mahmoud at arm.com>
Cc: Grzegorz Bernacki <gjb at semihalf.com>; devel at edk2.groups.io <devel at edk2.groups.io>; leif at nuviainc.com <leif at nuviainc.com>; ardb+tianocore at kernel.org <ardb+tianocore at kernel.org>; Sunny Wang <Sunny.Wang at arm.com>; mw at semihalf.com <mw at semihalf.com>; upstream at semihalf.com <upstream at semihalf.com>; pete at akeo.ie <pete at akeo.ie>; jian.j.wang at intel.com <jian.j.wang at intel.com>; hao.a.wu at intel.com <hao.a.wu at intel.com>; dandan.bi at intel.com <dandan.bi at intel.com>; eric.dong at intel.com <eric.dong at intel.com>
Subject: Re: [edk2-platforms PATCH v3 0/2] Add BootDiscoveryPolicyUiLib

On Fri, 16 Jul 2021 at 13:50, Samer El-Haj-Mahmoud
<Samer.El-Haj-Mahmoud at arm.com> wrote:
>
> Series Reviewed-By: Samer El-Haj-Mahmoud <Samer.El-Haj-Mahmoud at arm.com>
>

Does this series depend on core EDK2 changes, and if so, have they
been merged already?


> > -----Original Message-----
> > From: Grzegorz Bernacki <gjb at semihalf.com>
> > Sent: Wednesday, July 14, 2021 9:21 AM
> > To: devel at edk2.groups.io
> > Cc: leif at nuviainc.com; ardb+tianocore at kernel.org; Samer El-Haj-Mahmoud
> > <Samer.El-Haj-Mahmoud at arm.com>; Sunny Wang <Sunny.Wang at arm.com>;
> > mw at semihalf.com; upstream at semihalf.com; pete at akeo.ie;
> > jian.j.wang at intel.com; hao.a.wu at intel.com; dandan.bi at intel.com;
> > eric.dong at intel.com; Grzegorz Bernacki <gjb at semihalf.com>
> > Subject: [edk2-platforms PATCH v3 0/2] Add BootDiscoveryPolicyUiLib
> >
> > This patchset extends Boot Maintenance Menu and allows to select
> > Boot Discovery Policy. Raspberry Pi platforms uses the variable to
> > connect specified class of devices on boot. This patchset also
> > removes efdc159e which has similar functionality.
> >
> > Discussion on design can be found at:
> > https://edk2.groups.io/g/rfc/topic/rfc_boot_discovery_policy/82450628
> >
> > Changes since v1:
> > - make 'Connect All' (0x2) default value for PcdBootDiscoveryPolicy
> > - initialize BootDiscoveryPolicy variable in platform code, if not found
> >
> > Changes since v2:
> > - add missing local variable initialization
> >
> > Grzegorz Bernacki (3):
> > edk2:
> >   MdeModulePkg: Add BootDiscoveryPolicyUiLib.
> > edk2-platform:
> >   Platform/RaspberryPi: Enable Boot Discovery Policy.
> >   Revert "Platform/RaspberryPi: Setup option for disabling Fast Boot"
> >
> >  Platform/RaspberryPi/RaspberryPi.dec                                           |   2 -
> >  Platform/RaspberryPi/RPi3/RPi3.dsc                                             |   9 +-
> >  Platform/RaspberryPi/RPi4/RPi4.dsc                                             |  12 +--
> >  Platform/RaspberryPi/RPi4/RPi4.fdf                                             |   1 +
> >  Platform/RaspberryPi/Drivers/ConfigDxe/ConfigDxe.inf                           |   3 +-
> >
> > Platform/RaspberryPi/Library/PlatformBootManagerLib/PlatformBootManager
> > Lib.inf |   6 +-
> >  Platform/RaspberryPi/Include/ConfigVars.h                                      |  12 +--
> >  Platform/RaspberryPi/Drivers/ConfigDxe/ConfigDxeHii.vfr                        |  16 +--
> >  Platform/RaspberryPi/Drivers/ConfigDxe/ConfigDxe.c                             |  11 +--
> >  Platform/RaspberryPi/Library/PlatformBootManagerLib/PlatformBm.c               |
> > 102 +++++++++++++++++---
> >  Platform/RaspberryPi/Drivers/ConfigDxe/ConfigDxeHii.uni                        |  10 +-
> >  MdeModulePkg/MdeModulePkg.dec                                                     |   6 +
> >  MdeModulePkg/Library/BootDiscoveryPolicyUiLib/BootDiscoveryPolicyUiLib.inf
> > |  52 +++++++
> >  MdeModulePkg/Include/Guid/BootDiscoveryPolicy.h                                   |  22
> > +++
> >  MdeModulePkg/Library/BootDiscoveryPolicyUiLib/BootDiscoveryPolicyUiLib.c
> > | 160 ++++++++++++++++++++
> >
> > MdeModulePkg/Library/BootDiscoveryPolicyUiLib/BootDiscoveryPolicyUiLib.uni
> > |  18 +++
> >
> > MdeModulePkg/Library/BootDiscoveryPolicyUiLib/BootDiscoveryPolicyUiLibStri
> > ngs.uni |  29 ++++
> >
> > MdeModulePkg/Library/BootDiscoveryPolicyUiLib/BootDiscoveryPolicyUiLibVfr.
> > Vfr     |  44 ++++++
> >  18 files changed, 438 insertions(+), 77 deletions(-)
> >  create mode 100644
> > MdeModulePkg/Library/BootDiscoveryPolicyUiLib/BootDiscoveryPolicyUiLib.inf
> >  create mode 100644 MdeModulePkg/Include/Guid/BootDiscoveryPolicy.h
> >  create mode 100644
> > MdeModulePkg/Library/BootDiscoveryPolicyUiLib/BootDiscoveryPolicyUiLib.c
> >  create mode 100644
> > MdeModulePkg/Library/BootDiscoveryPolicyUiLib/BootDiscoveryPolicyUiLib.uni
> >  create mode 100644
> > MdeModulePkg/Library/BootDiscoveryPolicyUiLib/BootDiscoveryPolicyUiLibStri
> > ngs.uni
> >  create mode 100644
> > MdeModulePkg/Library/BootDiscoveryPolicyUiLib/BootDiscoveryPolicyUiLibVfr.
> > Vfr
> > --
> > 2.25.1
>
> IMPORTANT NOTICE: The contents of this email and any attachments are confidential and may also be privileged. If you are not the intended recipient, please notify the sender immediately and do not disclose the contents to any other person, use it for any purpose, or store or copy the information in any medium. Thank you.
IMPORTANT NOTICE: The contents of this email and any attachments are confidential and may also be privileged. If you are not the intended recipient, please notify the sender immediately and do not disclose the contents to any other person, use it for any purpose, or store or copy the information in any medium. Thank you.


-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#77840): https://edk2.groups.io/g/devel/message/77840
Mute This Topic: https://groups.io/mt/84201222/1813853
Group Owner: devel+owner at edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [edk2-devel-archive at redhat.com]
-=-=-=-=-=-=-=-=-=-=-=-


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://listman.redhat.com/archives/edk2-devel-archive/attachments/20210716/4ae1f9bf/attachment.htm>


More information about the edk2-devel-archive mailing list