mirror of
https://xff.cz/git/u-boot/
synced 2025-12-26 19:34:35 +01:00
While we have a symbol for controlling if we will be testing BOOTSTD or not, and it depends on SANDBOX, we do not control the building of test/boot/ content correctly. Guard the current bootstd tests with a check for UT_BOOTSTD and leave the measurement test available. Reviewed-by: Simon Glass <sjg@chromium.org> Signed-off-by: Tom Rini <trini@konsulko.com>
21 lines
455 B
Makefile
21 lines
455 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
|
|
|
|
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
|