Hi Tom, This is for the -next branch.
https://source.denx.de/u-boot/custodians/u-boot-dm/-/pipelines/10299 The following changes since commit b9c9ce8a4064c8d88f714604db856cf1cd2b40b5: Merge tag 'u-boot-at91-2022.04-a' of https://source.denx.de/u-boot/custodians/u-boot-at91 into next (2021-12-17 07:25:34 -0500) are available in the Git repository at: git://git.denx.de/u-boot-dm.git tags/dm-pull-17dec21 for you to fetch changes up to 121cfe5a84d463893bd01da16417ab138f98666a: fdtgrep: Handle an empty output tree (2021-12-17 09:44:59 -0700) ---------------------------------------------------------------- binman support for ATF FIP fdtgrep fixes for empty devicetree ---------------------------------------------------------------- Andy Shevchenko (2): binman: Do not pollute source tree when build with `make O=...` binman: Use less hard coded magic when inserting new PATH Ivan Mikhaylov (1): iot2050: binman: add missing-msg for blobs Simon Glass (5): binman: Add a utility module for ATF FIP binman: Add support for ATF FIP Convert CONFIG_PHYSMEM to Kconfig fdtgrep: Correct alignment of struct section fdtgrep: Handle an empty output tree README | 8 - arch/Kconfig | 2 + arch/arm/dts/k3-am65-iot2050-boot-image.dtsi | 5 + boot/fdt_region.c | 43 ++- include/configs/edison.h | 3 - include/configs/sandbox.h | 2 - include/configs/x86-common.h | 2 - include/fdt_region.h | 1 + lib/Kconfig | 10 + scripts/config_whitelist.txt | 1 - tools/binman/entries.rst | 154 +++++++++++ tools/binman/etype/atf_fip.py | 273 +++++++++++++++++++ tools/binman/fip_util.py | 653 ++++++++++++++++++++++++++++++++++++++++++++++ tools/binman/fip_util_test.py | 405 ++++++++++++++++++++++++++++ tools/binman/ftest.py | 217 +++++++++++++++ tools/binman/main.py | 27 +- tools/binman/missing-blob-help | 11 + tools/binman/test/203_fip.dts | 21 ++ tools/binman/test/204_fip_other.dts | 22 ++ tools/binman/test/205_fip_no_type.dts | 15 ++ tools/binman/test/206_fip_uuid.dts | 22 ++ tools/binman/test/207_fip_ls.dts | 25 ++ tools/binman/test/208_fip_replace.dts | 33 +++ tools/binman/test/209_fip_missing.dts | 19 ++ tools/binman/test/210_fip_size.dts | 19 ++ tools/binman/test/211_fip_bad_align.dts | 18 ++ tools/binman/test/212_fip_collection.dts | 24 ++ tools/fdtgrep.c | 3 +- 28 files changed, 2008 insertions(+), 30 deletions(-) create mode 100644 tools/binman/etype/atf_fip.py create mode 100755 tools/binman/fip_util.py create mode 100755 tools/binman/fip_util_test.py create mode 100644 tools/binman/test/203_fip.dts create mode 100644 tools/binman/test/204_fip_other.dts create mode 100644 tools/binman/test/205_fip_no_type.dts create mode 100644 tools/binman/test/206_fip_uuid.dts create mode 100644 tools/binman/test/207_fip_ls.dts create mode 100644 tools/binman/test/208_fip_replace.dts create mode 100644 tools/binman/test/209_fip_missing.dts create mode 100644 tools/binman/test/210_fip_size.dts create mode 100644 tools/binman/test/211_fip_bad_align.dts create mode 100644 tools/binman/test/212_fip_collection.dts Regards, Simon