From: Takahiro Akashi <takahiro.akashi@linaro.org>
To: Masahisa Kojima <masahisa.kojima@linaro.org>
Cc: u-boot@lists.denx.de, Heinrich Schuchardt <xypron.glpk@gmx.de>,
Ilias Apalodimas <ilias.apalodimas@linaro.org>,
Simon Glass <sjg@chromium.org>,
Francois Ozog <francois.ozog@linaro.org>,
Mark Kettenis <mark.kettenis@xs4all.nl>
Subject: Re: [PATCH v8 0/9] enable menu-driven UEFI variable maintenance
Date: Mon, 20 Jun 2022 13:14:58 +0900 [thread overview]
Message-ID: <20220620041458.GA26407@laputa> (raw)
In-Reply-To: <20220619045607.1669-1-masahisa.kojima@linaro.org>
On Sun, Jun 19, 2022 at 01:55:58PM +0900, Masahisa Kojima wrote:
> This series add the menu-driven UEFI boot variable maintenance
> and removable media support in bootmenu.
>
> Different from previous version, thie series adds a new U-Boot
> command "efimenu" to invoke the UEFI boot-related variable
> maintenance menu.
>
> Note that menu-driven UEFI Secure Boot key management patch series
> will follow.
>
> Source code can be cloned with:
> $ git clone https://git.linaro.org/people/masahisa.kojima/u-boot.git -b kojima/efi_menu_upstream_v8_0618
>
> [Major Changes]
> - command name is changed from "efimenu" to "eficonfig"
> - there is detailed chang
At first glance, the behavior looks good.
Thanks,
-Takahiro Akashi
> Masahisa Kojima (9):
> efi_loader: expose END device path node
> eficonfig: menu-driven addition of UEFI boot option
> eficonfig: add "Edit Boot Option" menu entry
> menu: add KEY_PLUS and KEY_MINUS handling
> eficonfig: add "Change Boot Order" menu entry
> eficonfig: add "Delete Boot Option" menu entry
> bootmenu: add removable media entries
> doc:bootmenu: add description for UEFI boot support
> doc:eficonfig: add documentation for eficonfig command
>
> cmd/Kconfig | 7 +
> cmd/Makefile | 1 +
> cmd/bootmenu.c | 99 +-
> cmd/eficonfig.c | 1872 ++++++++++++++++++++++++++++++
> common/menu.c | 6 +
> doc/usage/cmd/bootmenu.rst | 74 ++
> doc/usage/cmd/eficonfig.rst | 50 +
> doc/usage/index.rst | 1 +
> include/efi_config.h | 91 ++
> include/efi_loader.h | 63 +
> include/menu.h | 2 +
> lib/efi_loader/efi_bootmgr.c | 4 +
> lib/efi_loader/efi_boottime.c | 52 +-
> lib/efi_loader/efi_console.c | 78 ++
> lib/efi_loader/efi_device_path.c | 2 +-
> lib/efi_loader/efi_disk.c | 11 +
> lib/efi_loader/efi_file.c | 75 +-
> 17 files changed, 2437 insertions(+), 51 deletions(-)
> create mode 100644 cmd/eficonfig.c
> create mode 100644 doc/usage/cmd/eficonfig.rst
> create mode 100644 include/efi_config.h
>
> --
> 2.17.1
>
prev parent reply other threads:[~2022-06-20 4:15 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-06-19 4:55 [PATCH v8 0/9] enable menu-driven UEFI variable maintenance Masahisa Kojima
2022-06-19 4:55 ` [PATCH v8 1/9] efi_loader: expose END device path node Masahisa Kojima
2022-07-10 9:10 ` Heinrich Schuchardt
2022-07-11 11:32 ` Ilias Apalodimas
2022-06-19 4:56 ` [PATCH v8 2/9] eficonfig: menu-driven addition of UEFI boot option Masahisa Kojima
2022-07-10 9:03 ` Heinrich Schuchardt
2022-07-12 1:55 ` Takahiro Akashi
2022-07-12 6:25 ` Heinrich Schuchardt
2022-07-12 10:59 ` Masahisa Kojima
2022-07-15 14:02 ` Masahisa Kojima
2022-07-14 2:07 ` Takahiro Akashi
2022-06-19 4:56 ` [PATCH v8 3/9] eficonfig: add "Edit Boot Option" menu entry Masahisa Kojima
2022-07-10 9:08 ` Heinrich Schuchardt
2022-07-12 7:04 ` Masahisa Kojima
2022-06-19 4:56 ` [PATCH v8 4/9] menu: add KEY_PLUS and KEY_MINUS handling Masahisa Kojima
2022-07-10 9:09 ` Heinrich Schuchardt
2022-06-19 4:56 ` [PATCH v8 5/9] eficonfig: add "Change Boot Order" menu entry Masahisa Kojima
2022-06-19 4:56 ` [PATCH v8 6/9] eficonfig: add "Delete Boot Option" " Masahisa Kojima
2022-06-19 4:56 ` [PATCH v8 7/9] bootmenu: add removable media entries Masahisa Kojima
2022-06-19 4:56 ` [PATCH v8 8/9] doc:bootmenu: add description for UEFI boot support Masahisa Kojima
2022-06-19 4:56 ` [PATCH v8 9/9] doc:eficonfig: add documentation for eficonfig command Masahisa Kojima
2022-06-20 4:14 ` Takahiro Akashi [this message]
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-all 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=20220620041458.GA26407@laputa \
--to=takahiro.akashi@linaro.org \
--cc=francois.ozog@linaro.org \
--cc=ilias.apalodimas@linaro.org \
--cc=mark.kettenis@xs4all.nl \
--cc=masahisa.kojima@linaro.org \
--cc=sjg@chromium.org \
--cc=u-boot@lists.denx.de \
--cc=xypron.glpk@gmx.de \
/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