mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
fdd6a7733f
The test_event_base and test_event_probe unit tests use function
event_register() which depends on CONFIG_EVENT_DYNAMIC=y.
Fixes: 7d02645fe4
("event: Add a simple test")
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
6 lines
192 B
Makefile
6 lines
192 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
obj-y += cmd_ut_common.o
|
|
obj-$(CONFIG_AUTOBOOT) += test_autoboot.o
|
|
obj-$(CONFIG_CYCLIC) += cyclic.o
|
|
obj-$(CONFIG_EVENT_DYNAMIC) += event.o
|
|
obj-y += cread.o
|