mbox series

[NEXT] Pull request efi-2024-10-rc1

Message ID 55093256-50af-4d2e-9a30-433bee153f13@gmx.de
State Accepted
Delegated to: Tom Rini
Headers show
Series [NEXT] Pull request efi-2024-10-rc1 | expand

Pull-request

https://source.denx.de/u-boot/custodians/u-boot-efi.git tags/efi-2024-10-rc1

Message

Heinrich Schuchardt June 30, 2024, 1:21 p.m. UTC
Dear Tom,

The following changes since commit 899b088674b6905710ce546f0a8848662904852a:

   Merge patch series "pxe: Add debugging for booting" (2024-06-26
13:17:52 -0600)

are available in the Git repository at:

   https://source.denx.de/u-boot/custodians/u-boot-efi.git
tags/efi-2024-10-rc1

for you to fetch changes up to 636480e4e7088d05d7ff77af72ca00443c62b3e9:

   doc: develop: Add a general section on gdb usage (2024-06-30 13:58:31
+0200)
Gitlab CI showed no issues:
https://source.denx.de/u-boot/custodians/u-boot-efi/-/pipelines/21383

----------------------------------------------------------------
Pull request efi-2024-10-rc1

Documentation:
       Update requirements.txt to use current Python module versions
       Add a page describing debugging U-Boot with GDB
       FIT: describe data-size as a conditionally mandatory property
       Correct link to FIT specification in SPL code.
       Correct kaslrseed command long text description

UEFI:
       Add unit test checking that don't have kaslr-seed when measuring boot
       Deduplicate code for measured boot.

Other:
       Print size information in fwu command

----------------------------------------------------------------
Alexander Dahl (1):
       doc: develop: Add a general section on gdb usage

Bastian Germann (1):
       doc: fit: Make data-size a conditionally mandatory property

Heinrich Schuchardt (4):
       doc: update requirements.txt
       spl: correct link to FIT specification
       efi_selftest: can't have measured device-tree with kaslr-seed
       cmd: correct kaslrseed description

Ilias Apalodimas (6):
       efi_loader: remove unused TCG algo definitions
       tpm: Move TCG headers into a separate file
       tpm: Move TCG functions into a separate file
       efi_loader: remove unneeded header files
       tpm: Untangle tpm2_get_pcr_info()
       tpm: allow the user to select the compiled algorithms

Michal Simek (1):
       cmd: fwu: Also print information about size

  boot/Kconfig                         |   4 +
  boot/bootm.c                         |   1 +
  cmd/fwu_mdata.c                      |   1 +
  cmd/kaslrseed.c                      |   2 +-
  common/spl/spl_fit.c                 |   2 +-
  doc/develop/gdb.rst                  | 171 ++++++++
  doc/develop/index.rst                |   1 +
  doc/sphinx/requirements.txt          |  16 +-
  doc/usage/fit/source_file_format.rst |   6 +-
  include/efi_tcg2.h                   |   9 +-
  include/tpm-v2.h                     | 388 +++---------------
  include/tpm_tcg2.h                   | 348 ++++++++++++++++
  lib/Kconfig                          |   6 +-
  lib/Makefile                         |   2 +
  lib/efi_loader/efi_tcg2.c            |   3 +-
  lib/efi_selftest/efi_selftest_fdt.c  |   7 +
  lib/tpm-v2.c                         | 767
+++--------------------------------
  lib/tpm_tcg2.c                       | 731
+++++++++++++++++++++++++++++++++
  18 files changed, 1386 insertions(+), 1079 deletions(-)
  create mode 100644 doc/develop/gdb.rst
  create mode 100644 include/tpm_tcg2.h
  create mode 100644 lib/tpm_tcg2.c

Comments

Tom Rini July 1, 2024, 1:07 a.m. UTC | #1
On Sun, Jun 30, 2024 at 03:21:07PM +0200, Heinrich Schuchardt wrote:

> Dear Tom,
> 
> The following changes since commit 899b088674b6905710ce546f0a8848662904852a:
> 
>   Merge patch series "pxe: Add debugging for booting" (2024-06-26
> 13:17:52 -0600)
> 
> are available in the Git repository at:
> 
>   https://source.denx.de/u-boot/custodians/u-boot-efi.git
> tags/efi-2024-10-rc1
> 
> for you to fetch changes up to 636480e4e7088d05d7ff77af72ca00443c62b3e9:
> 
>   doc: develop: Add a general section on gdb usage (2024-06-30 13:58:31
> +0200)
> Gitlab CI showed no issues:
> https://source.denx.de/u-boot/custodians/u-boot-efi/-/pipelines/21383
> 

Applied to u-boot/next, thanks!