mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-16 09:54:35 +00:00
bloblist: test: Move test into common
This test doesn't belong at the top level. Move it into the common/ directory, to match its implementation. Signed-off-by: Simon Glass <sjg@chromium.org> Tested-by: Tom Rini <trini@konsulko.com> # rpi_3, rpi_4, rpi_arm64, am64x_evm_a53, am64-sk
This commit is contained in:
parent
6e625484f5
commit
82e6d79d9e
3 changed files with 3 additions and 1 deletions
|
@ -5,7 +5,6 @@
|
|||
obj-y += test-main.o
|
||||
|
||||
ifneq ($(CONFIG_$(XPL_)BLOBLIST),)
|
||||
obj-$(CONFIG_$(XPL_)CMDLINE) += bloblist.o
|
||||
obj-$(CONFIG_$(XPL_)CMDLINE) += bootm.o
|
||||
endif
|
||||
obj-$(CONFIG_$(XPL_)CMDLINE) += cmd/
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
# SPDX-License-Identifier: GPL-2.0+
|
||||
obj-y += cmd_ut_common.o
|
||||
obj-$(CONFIG_AUTOBOOT) += test_autoboot.o
|
||||
ifneq ($(CONFIG_$(XPL_)BLOBLIST),)
|
||||
obj-$(CONFIG_$(XPL_)CMDLINE) += bloblist.o
|
||||
endif
|
||||
obj-$(CONFIG_CYCLIC) += cyclic.o
|
||||
obj-$(CONFIG_EVENT_DYNAMIC) += event.o
|
||||
obj-y += cread.o
|
||||
|
|
Loading…
Add table
Reference in a new issue