Enable the bootctl tests (only for the sandbox board) so we can keep this functionality working. Series-to: concept Cover-letter: bootctl: Continue development with TKey functionality This series integrates the TKey disk-unlock features into the bootctl UI, as a demonstration of how this might work. The user is prompted for a passphrase, which is then used as a user-supplied secret (USS) for the TKey. This series includes support for using a pre-derived master key, so that the TKey emulator can be used in tests. Future work will continue this effort. END Signed-off-by: Simon Glass <simon.glass@canonical.com>
28 lines
724 B
Makefile
28 lines
724 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_$(PHASE_)FIT_PRINT) += fit_print.o
|
|
obj-$(CONFIG_BLK_LUKS) += luks.o
|
|
|
|
obj-$(CONFIG_EXPO) += expo.o expo_common.o
|
|
obj-$(CONFIG_CEDIT) += cedit.o expo_common.o
|
|
obj-$(CONFIG_UT_BOOTCTL) += bootctl/
|
|
endif
|
|
|
|
ifdef CONFIG_SANDBOX
|
|
obj-$(CONFIG_$(PHASE_)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_BOOTMETH_VBE_ABREC_OS) += vbe_abrec_os.o
|
|
|
|
obj-$(CONFIG_UPL) += upl.o
|