mbox series

Pull request smbios-2024-04-rc1

Message ID 10da4396-501b-4ab4-bd88-3d6c5b152017@gmx.de
State Accepted
Delegated to: Tom Rini
Headers show
Series Pull request smbios-2024-04-rc1 | expand

Pull-request

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

Message

Heinrich Schuchardt Jan. 9, 2024, 5:09 p.m. UTC
The following changes since commit c5e461fbf7cc72f0c1c8a79226b6a5170e56cb4d:

   Merge tag 'u-boot-imx-master-20240108' of
https://gitlab.denx.de/u-boot/custodians/u-boot-imx (2024-01-08 13:39:43
-0500)

are available in the Git repository at:

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

for you to fetch changes up to 8aec7031112eba0dbfc8f23f9be11c081ea5cc56:

   efi_loader: provide tool to dump SMBIOS table (2024-01-09 10:09:15 +0100)

----------------------------------------------------------------
Pull request smbios-2024-04-rc1

* make table_compute_checksum() arguments const
* remove duplicate function verify_checksum()
* enable setting processor family > 0xff
* set correct SMBIOS processor family value for RISC-V
* avoid importing ofnode.h in smbios.h
* provide a UEFI tool to dump SMBIOS table

----------------------------------------------------------------
Heinrich Schuchardt (6):
       lib: make table_compute_checksum() arguments const
       lib: smbios: verify_checksum() is duplicate
       smbios: enable setting processor family > 0xff
       cpu: riscv: set correct SMBIOS processor family value
       smbios: smbios.h should not import ofnode.h
       efi_loader: provide tool to dump SMBIOS table

  drivers/cpu/riscv_cpu.c     |   4 +
  include/smbios.h            |   6 +-
  include/tables_csum.h       |   2 +-
  lib/efi_loader/Makefile     |   7 +
  lib/efi_loader/efi_smbios.c |   3 +
  lib/efi_loader/smbiosdump.c | 622
++++++++++++++++++++++++++++++++++++++++++++
  lib/smbios-parser.c         |  21 +-
  lib/smbios.c                |   4 +-
  lib/tables_csum.c           |   4 +-
  9 files changed, 647 insertions(+), 26 deletions(-)
  create mode 100644 lib/efi_loader/smbiosdump.c

Comments

Tom Rini Jan. 9, 2024, 9:42 p.m. UTC | #1
On Tue, Jan 09, 2024 at 06:09:12PM +0100, Heinrich Schuchardt wrote:

> The following changes since commit c5e461fbf7cc72f0c1c8a79226b6a5170e56cb4d:
> 
>   Merge tag 'u-boot-imx-master-20240108' of
> https://gitlab.denx.de/u-boot/custodians/u-boot-imx (2024-01-08 13:39:43
> -0500)
> 
> are available in the Git repository at:
> 
>   https://source.denx.de/u-boot/custodians/u-boot-efi.git
> tags/smbios-2024-04-rc1
> 
> for you to fetch changes up to 8aec7031112eba0dbfc8f23f9be11c081ea5cc56:
> 
>   efi_loader: provide tool to dump SMBIOS table (2024-01-09 10:09:15 +0100)
> 

Applied to u-boot/master, thanks!