diff options
author | Sughosh Ganu <sughosh.ganu@linaro.org> | 2022-10-21 18:16:05 +0530 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-10-31 14:47:33 -0400 |
commit | 873cf8ac70b620a0c1417d804bd4fb4246c34ebc (patch) | |
tree | 5381872ddd9dd0f56887cbd4d96e036f84651c7e /tools | |
parent | e68c03be46ce9bf409a2a9ad761a247d8640c89a (diff) | |
download | u-boot-873cf8ac70b620a0c1417d804bd4fb4246c34ebc.tar.gz u-boot-873cf8ac70b620a0c1417d804bd4fb4246c34ebc.tar.bz2 u-boot-873cf8ac70b620a0c1417d804bd4fb4246c34ebc.zip |
test: dm: Add test cases for FWU Metadata uclass
Add test cases for accessing the FWU Metadata on the sandbox
platform. The sandbox platform also uses the metadata access driver
for GPT partitioned block devices.
The FWU feature will be tested on the sandbox64 variant with a raw
capsule. Remove the FIT capsule testing from sandbox64 defconfig --
the FIT capsule test will be run on the sandbox_flattree variant.
Signed-off-by: Sughosh Ganu <sughosh.ganu@linaro.org>
Suggested-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Acked-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/Makefile b/tools/Makefile index af6a710c2d..26be0a7ba2 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -72,7 +72,9 @@ mkenvimage-objs := mkenvimage.o os_support.o lib/crc32.o hostprogs-y += dumpimage mkimage hostprogs-$(CONFIG_TOOLS_LIBCRYPTO) += fit_info fit_check_sign -hostprogs-$(CONFIG_CMD_BOOTEFI_SELFTEST) += file2include +ifneq ($(CONFIG_CMD_BOOTEFI_SELFTEST)$(CONFIG_FWU_MDATA_GPT_BLK),) +hostprogs-y += file2include +endif FIT_OBJS-y := fit_common.o fit_image.o image-host.o boot/image-fit.o FIT_SIG_OBJS-$(CONFIG_TOOLS_LIBCRYPTO) := image-sig-host.o boot/image-fit-sig.o |