mirror of
https://xff.cz/git/u-boot/
synced 2026-01-24 21:35:22 +01:00
Add some unit tests to check that we can write a UPL handoff and read it back. Signed-off-by: Simon Glass <sjg@chromium.org>
18 lines
424 B
Makefile
18 lines
424 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright 2021 Google LLC
|
|
|
|
obj-$(CONFIG_BOOTSTD) += bootdev.o bootstd_common.o bootflow.o bootmeth.o
|
|
obj-$(CONFIG_FIT) += image.o
|
|
obj-$(CONFIG_MEASURED_BOOT) += measurement.o
|
|
|
|
obj-$(CONFIG_EXPO) += expo.o
|
|
obj-$(CONFIG_CEDIT) += cedit.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
|