mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-16 09:54:35 +00:00
bootm: test: Move test into boot
This test doesn't belong at the top level. Move it into the boot/ directory, to match its implementation. This test is currently dependent on bloblist, but the real dependency is on sandbox, so update that. 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
ee3c8698e0
commit
7f8b8c5abc
3 changed files with 3 additions and 3 deletions
|
@ -4,9 +4,6 @@
|
|||
|
||||
obj-y += test-main.o
|
||||
|
||||
ifneq ($(CONFIG_$(XPL_)BLOBLIST),)
|
||||
obj-$(CONFIG_$(XPL_)CMDLINE) += bootm.o
|
||||
endif
|
||||
obj-$(CONFIG_$(XPL_)CMDLINE) += cmd/
|
||||
obj-$(CONFIG_$(XPL_)CMDLINE) += cmd_ut.o
|
||||
obj-y += dm/
|
||||
|
|
|
@ -10,6 +10,9 @@ obj-$(CONFIG_EXPO) += expo.o
|
|||
obj-$(CONFIG_CEDIT) += cedit.o
|
||||
endif
|
||||
|
||||
ifdef CONFIG_SANDBOX
|
||||
obj-$(CONFIG_$(XPL_)CMDLINE) += bootm.o
|
||||
endif
|
||||
obj-$(CONFIG_MEASURED_BOOT) += measurement.o
|
||||
|
||||
ifdef CONFIG_OF_LIVE
|
||||
|
|
Loading…
Add table
Reference in a new issue