[U-Boot] [PULL] efi patch queue 2017-12-05

Alexander Graf agraf at suse.de
Tue Dec 5 21:59:07 UTC 2017


Hi Tom,

This is my current patch queue for efi.  Please pull.

Alex


The following changes since commit 9804d88630cdb22f5f0ace05ac05942928410fd9:

  Merge branch 'rmobile-mx' of git://git.denx.de/u-boot-sh (2017-11-30 10:39:04 -0500)

are available in the git repository at:

  git://github.com/agraf/u-boot.git tags/signed-efi-next

for you to fetch changes up to bb0bb91cf0aa2c13528fe39be2006f32f7b9c437:

  efi_stub: Use efi_uintn_t (2017-12-05 22:56:17 +0100)

----------------------------------------------------------------
Patch queue for efi - 2017-12-05

Highlights for this release:

  - Dynamic EFI object creation (lists instead of static arrays)
  - EFI selftest improvements
  - Minor fixes

----------------------------------------------------------------
Alexander Graf (3):
      efi_loader: Fix partition offsets
      efi_loader helloworld.efi: Fix building with -Os
      efi_stub: Use efi_uintn_t

Heinrich Schuchardt (64):
      efi_loader: move efi_search_obj up in code
      efi_loader: implement SetWatchdogTimer
      efi_selftest: provide test for watchdog timer
      efi_loader: new function utf8_to_utf16
      efi_loader: guard against double inclusion of efi_loader.h
      efi_loader: consistently use efi_status_t in bootefi
      efi_selftest: provide a dummy device path
      efi_selftest: reformat code
      efi_selftest: efi_st_memcmp should return 0
      efi_selftest: deduplicate code
      efi_selftest: allow to select a single test for execution
      efi_selftest: correctly cleanup after selftest
      efi_loader: use bootargs as load options
      efi_selftest: test reboot by watchdog
      test/py: test reboot by EFI watchdog
      test/py: fix typo in test_efi_loader.py
      efi_selftest: provide test for EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL
      efi_loader: set parent handle in efi_load_image
      efi_loader: capitalize EFI_LOCATE_SEARCH_TYPE values
      efi_selftest: test protocol management
      efi_loader: eliminate efi_install_protocol_interface_ext
      efi_loader: eliminate efi_uninstall_protocol_interface_ext
      efi_loader: remove unused typedef for INTN
      efi_loader: replace UINTN by efi_uintn_t
      efi_loader: consistently use efi_uintn_t in boot services
      efi_loader: rework efi_locate_handle
      efi_loader: rework efi_search_obj
      efi_loader: fix typo efi_install_multiple_protocol_interfaces
      efi_loader: debug output efi_install_protocol_interface
      efi_loader implement UninstallMultipleProtocolInterfaces
      efi_loader: efi_gop: check calloc return value
      efi_loader: efi_disk: check return value of calloc
      efi_loader: efi_net: check return value of calloc
      efi_loader: efi_dp_match should have const arguments
      efi_loader: make efi_create_handle non-static
      efi_loader: argument of efi_search_obj should be const
      efi_loader: efi_gop: use correct types for parameters
      efi_selftest: test for graphics output protocol
      efi_loader: helper functions for protocol management
      efi_loader: simplify efi_install_protocol_interface
      efi_loader: simplify efi_search
      efi_loader: simplify efi_uninstall_protocol_interface
      efi_loader: simplify efi_locate_protocol
      efi_loader: refactor efi_setup_loaded_image
      efi_loader: efi_console: use helper functions
      efi_loader: helloworld.c: remove superfluous include
      efi_loader: size of media device path node represenation
      efi_loader: efi_dp_str should print path not node
      efi_loader: fix efi_convert_device_node_to_text
      efi_loader: reimplement LocateDevicePath
      efi_selftest: test EFI_DEVICE_PATH_TO_TEXT_PROTOCOL
      efi_loader: efi_disk: use efi_add_protocol
      efi_loader: efi_net: use efi_add_protocol
      efi_loader: efi_gop: use efi_add_protocol
      efi_loader: simplify efi_open_protocol
      efi_loader: simplify find_obj
      efi_loader: manage protocols in a linked list
      efi_selftest: compile without special compiler flags
      efi_selftest: add missing line feed
      efi_loader: output load options in helloworld
      test/py: check return code of helloworld
      efi_loader: pass handle of loaded image
      efi_loader: helper function to add EFI object to list
      efi_loader: comments for EFI_DEVICE_PATH_TO_TEXT_PROTOCOL

Jonathan Gray (1):
      efi_loader: initialise partition_signature memory

Rob Clark (1):
      efi_loader: add missing breaks

Stefan Roese (1):
      efi_loader: Exit in efi_set_bootdev() upon invalid "desc"

 cmd/bootefi.c                                   |  73 ++-
 include/charset.h                               |  15 +
 include/efi.h                                   |   6 +-
 include/efi_api.h                               |  48 +-
 include/efi_loader.h                            |  66 +-
 include/efi_selftest.h                          |  21 +
 lib/charset.c                                   |  57 +-
 lib/efi/efi_stub.c                              |   2 +-
 lib/efi_loader/Makefile                         |   6 +-
 lib/efi_loader/efi_boottime.c                   | 788 ++++++++++++++----------
 lib/efi_loader/efi_console.c                    |  48 +-
 lib/efi_loader/efi_device_path.c                |  67 +-
 lib/efi_loader/efi_device_path_to_text.c        | 193 +++---
 lib/efi_loader/efi_disk.c                       | 103 ++--
 lib/efi_loader/efi_gop.c                        |  34 +-
 lib/efi_loader/efi_memory.c                     |  20 +-
 lib/efi_loader/efi_net.c                        |  31 +-
 lib/efi_loader/efi_watchdog.c                   |  89 +++
 lib/efi_loader/helloworld.c                     |  38 +-
 lib/efi_selftest/Makefile                       |  22 +-
 lib/efi_selftest/efi_selftest.c                 | 153 ++++-
 lib/efi_selftest/efi_selftest_console.c         |  10 +
 lib/efi_selftest/efi_selftest_devicepath.c      | 390 ++++++++++++
 lib/efi_selftest/efi_selftest_events.c          |   2 +-
 lib/efi_selftest/efi_selftest_gop.c             |  95 +++
 lib/efi_selftest/efi_selftest_manageprotocols.c | 354 +++++++++++
 lib/efi_selftest/efi_selftest_snp.c             |   2 +-
 lib/efi_selftest/efi_selftest_textoutput.c      |  53 ++
 lib/efi_selftest/efi_selftest_tpl.c             |   4 +-
 lib/efi_selftest/efi_selftest_util.c            |  11 +-
 lib/efi_selftest/efi_selftest_watchdog.c        | 231 +++++++
 test/py/tests/test_efi_loader.py                |   4 +-
 test/py/tests/test_efi_selftest.py              |  14 +-
 33 files changed, 2391 insertions(+), 659 deletions(-)
 create mode 100644 lib/efi_loader/efi_watchdog.c
 create mode 100644 lib/efi_selftest/efi_selftest_devicepath.c
 create mode 100644 lib/efi_selftest/efi_selftest_gop.c
 create mode 100644 lib/efi_selftest/efi_selftest_manageprotocols.c
 create mode 100644 lib/efi_selftest/efi_selftest_textoutput.c
 create mode 100644 lib/efi_selftest/efi_selftest_watchdog.c


More information about the U-Boot mailing list