mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-17 02:15:02 +00:00

This test doesn't belong at the top level. Move it into the boot/ directory, to match its implementation. This test is currently dependent on bloblist, but the real dependency is on sandbox, so update that. Signed-off-by: Simon Glass <sjg@chromium.org> Tested-by: Tom Rini <trini@konsulko.com> # rpi_3, rpi_4, rpi_arm64, am64x_evm_a53, am64-sk
23 lines
522 B
Makefile
23 lines
522 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright 2021 Google LLC
|
|
|
|
ifdef CONFIG_UT_BOOTSTD
|
|
obj-$(CONFIG_BOOTSTD) += bootdev.o bootstd_common.o bootflow.o bootmeth.o
|
|
obj-$(CONFIG_FIT) += image.o
|
|
|
|
obj-$(CONFIG_EXPO) += expo.o
|
|
obj-$(CONFIG_CEDIT) += cedit.o
|
|
endif
|
|
|
|
ifdef CONFIG_SANDBOX
|
|
obj-$(CONFIG_$(XPL_)CMDLINE) += bootm.o
|
|
endif
|
|
obj-$(CONFIG_MEASURED_BOOT) += measurement.o
|
|
|
|
ifdef CONFIG_OF_LIVE
|
|
obj-$(CONFIG_BOOTMETH_VBE_SIMPLE) += vbe_simple.o
|
|
endif
|
|
obj-$(CONFIG_BOOTMETH_VBE) += vbe_fixup.o
|
|
|
|
obj-$(CONFIG_UPL) += upl.o
|