public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "gaoliming" <gaoliming@byosoft.com.cn>
To: "'Ard Biesheuvel'" <ardb@kernel.org>,
	"'Gerd Hoffmann'" <kraxel@redhat.com>
Cc: devel@edk2.groups.io,
	"'Jordan Justen'" <jordan.l.justen@intel.com>,
	"'Stefan Berger'" <stefanb@linux.ibm.com>,
	"'Tom Lendacky'" <thomas.lendacky@amd.com>,
	"'Jiewen Yao'" <jiewen.yao@intel.com>,
	"'Anthony Perard'" <anthony.perard@citrix.com>,
	"'Marc-André Lureau'" <marcandre.lureau@redhat.com>,
	"'Ard Biesheuvel'" <ardb+tianocore@kernel.org>,
	"'Erdem Aktas'" <erdemaktas@google.com>,
	"'Oliver Steffen'" <osteffen@redhat.com>,
	"'Min Xu'" <min.m.xu@intel.com>,
	"'James Bottomley'" <jejb@linux.ibm.com>,
	"'Julien Grall'" <julien@xen.org>,
	"'Michael Roth'" <michael.roth@amd.com>,
	"'Pawel Polawski'" <ppolawsk@redhat.com>
Subject: 回复: [PATCH v2 0/4] OvmfPkg: remove PlatformBootManagerLibGrub
Date: Wed, 10 May 2023 15:41:02 +0800	[thread overview]
Message-ID: <000801d98312$c56179d0$50246d70$@byosoft.com.cn> (raw)
In-Reply-To: <CAMj1kXGqizoh6HEVN91qyZia=S7GHd3eQRWY+VdXLCS3h2Mt=w@mail.gmail.com>

Ard:
  Seemly, this patch set passed code review before the soft feature freeze. So, I am OK to merge it for this stable tag. 

Thanks
Liming
> -----邮件原件-----
> 发件人: Ard Biesheuvel <ardb@kernel.org>
> 发送时间: 2023年5月10日 15:13
> 收件人: Gerd Hoffmann <kraxel@redhat.com>; Liming Gao (Byosoft address)
> <gaoliming@byosoft.com.cn>
> 抄送: devel@edk2.groups.io; Jordan Justen <jordan.l.justen@intel.com>;
> Stefan Berger <stefanb@linux.ibm.com>; Tom Lendacky
> <thomas.lendacky@amd.com>; Jiewen Yao <jiewen.yao@intel.com>;
> Anthony Perard <anthony.perard@citrix.com>; Marc-André Lureau
> <marcandre.lureau@redhat.com>; Ard Biesheuvel
> <ardb+tianocore@kernel.org>; Erdem Aktas <erdemaktas@google.com>;
> Oliver Steffen <osteffen@redhat.com>; Min Xu <min.m.xu@intel.com>;
> James Bottomley <jejb@linux.ibm.com>; Julien Grall <julien@xen.org>;
> Michael Roth <michael.roth@amd.com>; Pawel Polawski
> <ppolawsk@redhat.com>
> 主题: Re: [PATCH v2 0/4] OvmfPkg: remove PlatformBootManagerLibGrub
> 
> (cc Liming)
> 
> I'd like to merge this series before the stable tag - any objections?
> 
> On Fri, 5 May 2023 at 07:28, Gerd Hoffmann <kraxel@redhat.com> wrote:
> >
> > An attempt to reduce code duplication a bit.
> PlatformBootManagerLibGrub
> > is an (outdated) copy of PlatformBootManagerLib with some policy
> > changes.  Add a PCD to enable this policy and add support for that to
> > PlatformBootManagerLib, which in turn allows to remove
> > PlatformBootManagerLibGrub.
> >
> > v2:
> >  - rebase to latest master
> >  - add patch to disable NvVarsFileLib (James)
> >  - pick up acks
> >
> > Gerd Hoffmann (4):
> >   OvmfPkg/PlatformBootManagerLib: add PcdBootRestrictToFirmware
> >   OvmfPkg/NvVarsFileLib: disable in case PcdBootRestrictToFirmware is
> >     set
> >   OvmfPkg/AmdSev: stop using PlatformBootManagerLibGrub
> >   OvmfPkg: drop PlatformBootManagerLibGrub
> >
> >  OvmfPkg/OvmfPkg.dec                           |    3 +
> >  OvmfPkg/AmdSev/AmdSevX64.dsc                  |   10 +-
> >  .../Library/NvVarsFileLib/NvVarsFileLib.inf   |    1 +
> >  .../PlatformBootManagerLib.inf                |    2 +
> >  .../PlatformBootManagerLibGrub.inf            |   73 -
> >  .../PlatformBootManagerLibGrub/BdsPlatform.h  |  185 --
> >  OvmfPkg/Library/NvVarsFileLib/NvVarsFileLib.c |    3 +-
> >  .../PlatformBootManagerLib/BdsPlatform.c      |   70 +-
> >  .../PlatformBootManagerLibGrub/BdsPlatform.c  | 1604 -----------------
> >  .../PlatformBootManagerLibGrub/PlatformData.c |  212 ---
> >  .../PlatformBootManagerLibGrub/QemuKernel.c   |   55 -
> >  11 files changed, 82 insertions(+), 2136 deletions(-)
> >  delete mode 100644
> OvmfPkg/Library/PlatformBootManagerLibGrub/PlatformBootManagerLibGru
> b.inf
> >  delete mode 100644
> OvmfPkg/Library/PlatformBootManagerLibGrub/BdsPlatform.h
> >  delete mode 100644
> OvmfPkg/Library/PlatformBootManagerLibGrub/BdsPlatform.c
> >  delete mode 100644
> OvmfPkg/Library/PlatformBootManagerLibGrub/PlatformData.c
> >  delete mode 100644
> OvmfPkg/Library/PlatformBootManagerLibGrub/QemuKernel.c
> >
> > --
> > 2.40.1
> >



  reply	other threads:[~2023-05-10  7:41 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-05-05  5:17 [PATCH v2 0/4] OvmfPkg: remove PlatformBootManagerLibGrub Gerd Hoffmann
2023-05-05  5:17 ` [PATCH v2 1/4] OvmfPkg/PlatformBootManagerLib: add PcdBootRestrictToFirmware Gerd Hoffmann
2023-05-05  5:17 ` [PATCH v2 2/4] OvmfPkg/NvVarsFileLib: disable in case PcdBootRestrictToFirmware is set Gerd Hoffmann
2023-05-05  5:17 ` [PATCH v2 3/4] OvmfPkg/AmdSev: stop using PlatformBootManagerLibGrub Gerd Hoffmann
2023-05-05  5:17 ` [PATCH v2 4/4] OvmfPkg: drop PlatformBootManagerLibGrub Gerd Hoffmann
2023-05-10  7:12 ` [PATCH v2 0/4] OvmfPkg: remove PlatformBootManagerLibGrub Ard Biesheuvel
2023-05-10  7:41   ` gaoliming [this message]
2023-05-10 12:33     ` [edk2-devel] 回复: " Ard Biesheuvel
2023-05-10 12:43       ` Ard Biesheuvel
2023-05-10 15:07         ` Ard Biesheuvel

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-list from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='000801d98312$c56179d0$50246d70$@byosoft.com.cn' \
    --to=devel@edk2.groups.io \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox