All of lore.kernel.org
 help / color / mirror / Atom feed
* [RFC PATCH v2 0/4] enable menu-driven boot device selection
@ 2022-02-22 16:02 Masahisa Kojima
  2022-02-22 16:02 ` [RFC PATCH v2 1/4] efi_loader: add " Masahisa Kojima
                   ` (4 more replies)
  0 siblings, 5 replies; 7+ messages in thread
From: Masahisa Kojima @ 2022-02-22 16:02 UTC (permalink / raw)
  To: u-boot
  Cc: Heinrich Schuchardt, Ilias Apalodimas, Simon Glass,
	Takahiro Akashi, Francois Ozog, Mark Kettenis, Masahisa Kojima

This patch series adds the menu-driven boot device selection.
This menu also provides the functionality to add and delete
Boot#### variable, and edit the BootOrder variable.

This menu appears with the command "bootefi bootmgr",
the menu structure is as follows.

* Menu structure
[Boot Manager]
    -> select Boot#### to boot
[Boot Manager Maintenance]
    - [Add Boot Option]
        -> add new Boot#### variable
    - [Delete Boot Option]
        -> delete existing Boot#### variable
    - [Change Boot Order]
        -> update BootOrder variable

* Things to consider
 - eliminate EFI_CALLs
 - replacement of ANSI_CLEAR_CONSOLE

* Remaining items
 - Support of adding Boot#### other than block device(e.g. network)
 - error notification

Masahisa Kojima (4):
  efi_loader: add menu-driven boot device selection
  lib/charset: add u16_strlcat() function
  test: unit test for u16_strlcat()
  efi_loader: add menu-driven UEFI Boot Variable maintenance

 cmd/bootmenu.c                |  145 -----
 common/menu.c                 |  137 ++++
 include/charset.h             |   15 +
 include/efi_loader.h          |   27 +
 include/menu.h                |   20 +
 lib/charset.c                 |   20 +
 lib/efi_loader/Kconfig        |   20 +
 lib/efi_loader/efi_bootmgr.c  | 1105 ++++++++++++++++++++++++++++++++-
 lib/efi_loader/efi_boottime.c |   55 +-
 lib/efi_loader/efi_console.c  |   81 +++
 lib/efi_loader/efi_file.c     |   74 ++-
 test/unicode_ut.c             |   45 ++
 12 files changed, 1548 insertions(+), 196 deletions(-)

-- 
2.17.1


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2022-02-25  0:08 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-22 16:02 [RFC PATCH v2 0/4] enable menu-driven boot device selection Masahisa Kojima
2022-02-22 16:02 ` [RFC PATCH v2 1/4] efi_loader: add " Masahisa Kojima
2022-02-22 16:02 ` [RFC PATCH v2 2/4] lib/charset: add u16_strlcat() function Masahisa Kojima
2022-02-22 16:02 ` [RFC PATCH v2 3/4] test: unit test for u16_strlcat() Masahisa Kojima
2022-02-22 16:02 ` [RFC PATCH v2 4/4] efi_loader: add menu-driven UEFI Boot Variable maintenance Masahisa Kojima
2022-02-24 10:31 ` [RFC PATCH v2 0/4] enable menu-driven boot device selection Heinrich Schuchardt
2022-02-25  0:07   ` Masahisa Kojima

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.