mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-18 10:54:37 +00:00

We want to encourage people to use an allocated bloblist since it is more flexible than a fixed one. Make this the default, being sure not to change existing users. The unit tests require BLOBLIST_FIXED so add a dependency in the Makefile to avoid build errors. All sandbox builds require BLOBLIST_FIXED so make that the default for sandbox. Signed-off-by: Simon Glass <sjg@chromium.org>
14 lines
352 B
Makefile
14 lines
352 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
obj-y += cmd_ut_common.o
|
|
obj-$(CONFIG_AUTOBOOT) += test_autoboot.o
|
|
|
|
ifneq ($(CONFIG_$(XPL_)BLOBLIST),)
|
|
ifdef CONFIG_BLOBLIST_FIXED
|
|
obj-$(CONFIG_$(XPL_)CMDLINE) += bloblist.o
|
|
endif
|
|
endif
|
|
|
|
obj-$(CONFIG_CYCLIC) += cyclic.o
|
|
obj-$(CONFIG_EVENT_DYNAMIC) += event.o
|
|
obj-y += cread.o
|
|
obj-$(CONFIG_$(XPL_)CMDLINE) += print.o
|