diff options
| author | Tom Rini <[email protected]> | 2024-08-23 15:59:44 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-08-23 15:59:44 -0600 |
| commit | 7670200d4b7bbb572290d0fb2ed9cd0fb1f989cc (patch) | |
| tree | f0a4e3b850c8355297a9d2a61b70af51784668c8 /test/boot | |
| parent | 5948fd0ae7a86af6e2b6a5227005b92ad2ab67d8 (diff) | |
| parent | 2191c117338849639a7c0519d4908fce43783c0e (diff) | |
Merge patch series "test/overlay: Make this depend on SANDBOX"
Tom Rini <[email protected]> says:
Update a few things so that CONFIG_UNIT_TEST will compile for more
hardware platforms.
Diffstat (limited to 'test/boot')
| -rw-r--r-- | test/boot/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/boot/Makefile b/test/boot/Makefile index 8ec5daa7bfe..d8eded20d4f 100644 --- a/test/boot/Makefile +++ b/test/boot/Makefile @@ -2,12 +2,15 @@ # # 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_MEASURED_BOOT) += measurement.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 |
