All of lore.kernel.org
 help / color / mirror / Atom feed
From: Alexander Graf <agraf@suse.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PULL] efi patch queue 2017-12-04
Date: Mon,  4 Dec 2017 00:08:30 +0100	[thread overview]
Message-ID: <20171203230830.18187-1-agraf@suse.de> (raw)

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 3bb74f9800cdc4cf10a87f2725242c2565256654:

  efi_loader helloworld.efi: Fix building with -Os (2017-12-01 22:31:00 +0100)

----------------------------------------------------------------
Patch queue for efi - 2017-12-04

Highlights for this release:

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

----------------------------------------------------------------
Alexander Graf (2):
      efi_loader: Fix partition offsets
      efi_loader helloworld.efi: Fix building with -Os

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_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 +-
 32 files changed, 2390 insertions(+), 658 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

             reply	other threads:[~2017-12-03 23:08 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-12-03 23:08 Alexander Graf [this message]
2017-12-04 15:13 ` [U-Boot] [PULL] efi patch queue 2017-12-04 Tom Rini

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=20171203230830.18187-1-agraf@suse.de \
    --to=agraf@suse.de \
    --cc=u-boot@lists.denx.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 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.