From: Tom Rini Date: Mon, 15 Jun 2026 17:04:48 +0000 (-0600) Subject: Merge patch series "various memory related fixups" X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a0a1e9f2f1dffed04ee52723ce957c07bb905c25;p=thirdparty%2Fu-boot.git Merge patch series "various memory related fixups" rs@ti.com says: From: Randolph Sapp Nitpicks and fixes from the discovery thread on adding PocketBeagle2 support [1]. This does a lot of general setup required for the device, but these modifications themselves aren't device specific. For those specifically interested in PocketBeagle2 support and don't care about these details, my development branch is public [2]. That first patch may provoke some opinions, but honestly if that warning was still present I wouldn't have spent a week poking holes in both the EFI and LMB allocations systems. Please let me know if there is a specific usecase that it breaks though. [1] https://lore.kernel.org/all/DHHC66BBMD27.YHGIH43C6XBK@ti.com/ [2] https://github.com/StaticRocket/u-boot/tree/feature/pocketbeagle2 Link: https://lore.kernel.org/r/20260604155038.3182-1-rs@ti.com --- a0a1e9f2f1dffed04ee52723ce957c07bb905c25 diff --cc test/boot/Makefile index d98f212b243,12904f7f508..e6aa0ab7d3e --- a/test/boot/Makefile +++ b/test/boot/Makefile @@@ -14,8 -14,10 +14,11 @@@ endi ifdef CONFIG_SANDBOX obj-$(CONFIG_$(PHASE_)CMDLINE) += bootm.o + ifdef CONFIG_UT_DM + obj-$(CONFIG_$(PHASE_)OF_LIBFDT) += image_fdt.o + endif endif +obj-$(CONFIG_$(PHASE_)FIT_VERITY) += fit_verity.o obj-$(CONFIG_MEASURED_BOOT) += measurement.o ifdef CONFIG_OF_LIVE diff --cc test/cmd_ut.c index d1b376f617c,363ed4eab30..4328670d0d6 --- a/test/cmd_ut.c +++ b/test/cmd_ut.c @@@ -59,9 -59,9 +59,10 @@@ SUITE_DECL(env) SUITE_DECL(exit); SUITE_DECL(fdt); SUITE_DECL(fdt_overlay); +SUITE_DECL(fit_verity); SUITE_DECL(font); SUITE_DECL(hush); + SUITE_DECL(image_fdt); SUITE_DECL(lib); SUITE_DECL(loadm); SUITE_DECL(log); @@@ -87,9 -87,9 +88,10 @@@ static struct suite suites[] = SUITE(exit, "shell exit and variables"), SUITE(fdt, "fdt command"), SUITE(fdt_overlay, "device tree overlays"), + SUITE(fit_verity, "FIT dm-verity cmdline generation"), SUITE(font, "font command"), SUITE(hush, "hush behaviour"), + SUITE(image_fdt, "image fdt parsing"), SUITE(lib, "library functions"), SUITE(loadm, "loadm command parameters and loading memory blob"), SUITE(log, "logging functions"),