mbox series

[v3,0/4] Clean-up patch set for MbedTLS integration

Message ID 20240516211156.1819939-1-raymond.mao@linaro.org
Headers show
Series Clean-up patch set for MbedTLS integration | expand

Message

Raymond Mao May 16, 2024, 9:11 p.m. UTC
This patch set is picked from the previously posted serie:
"[RFC] Integrate MbedTLS v3.6 LTS with U-Boot"

They are not directly related to MbedTLS integration, but the
prerequisite for a few clean-up, refactoring and minor fixes.

For V2, the linker script patch is dropped and added one patch
to move the snprintf to stdio.h

Raymond Mao (4):
  image: remove redundant hash includes
  efi_loader: remove redundant hash includes
  md5: Use typedef for MD5 context
  include: Move snprintf to stdio.h

 arch/arc/lib/cpu.c             |  2 +-
 board/Synology/common/legacy.c |  1 +
 board/ti/common/fdt_ops.c      |  2 +-
 boot/image-fit.c               |  4 ----
 boot/image.c                   |  2 --
 cmd/part.c                     |  1 +
 common/button_cmd.c            |  2 +-
 drivers/cpu/mpc83xx_cpu.c      |  2 +-
 drivers/crypto/hash/hash_sw.c  |  8 ++++----
 include/stdio.h                | 17 +++++++++++++++++
 include/u-boot/md5.h           | 10 +++++-----
 include/vsprintf.h             | 17 -----------------
 lib/display_options.c          |  1 +
 lib/efi_loader/efi_signature.c |  1 -
 lib/efi_loader/efi_tcg2.c      |  3 ---
 lib/fwu_updates/fwu_mtd.c      |  2 +-
 lib/hexdump.c                  |  2 +-
 lib/md5.c                      | 10 +++++-----
 lib/vsprintf.c                 |  1 +
 test/dm/scmi.c                 |  2 +-
 test/print_ut.c                |  1 +
 21 files changed, 43 insertions(+), 48 deletions(-)

Comments

Tom Rini May 23, 2024, 2:46 a.m. UTC | #1
On Thu, 16 May 2024 14:11:48 -0700, Raymond Mao wrote:

> This patch set is picked from the previously posted serie:
> "[RFC] Integrate MbedTLS v3.6 LTS with U-Boot"
> 
> They are not directly related to MbedTLS integration, but the
> prerequisite for a few clean-up, refactoring and minor fixes.
> 
> For V2, the linker script patch is dropped and added one patch
> to move the snprintf to stdio.h
> 
> [...]

Applied to u-boot/next, thanks!