mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-04-04 14:56:11 +00:00
Add test for the SPI load method. This one is pretty straightforward. We can't enable FIT_EXTERNAL with LOAD_FIT_FULL because spl_spi_load_image doesn't know the total image size and has to guess from fdt_totalsize. This doesn't include external data, so loading it will fail. Signed-off-by: Sean Anderson <seanga2@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org>
10 lines
323 B
Makefile
10 lines
323 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright 2021 Google LLC
|
|
|
|
obj-y += spl_load.o
|
|
obj-$(CONFIG_SPL_UT_LOAD_FS) += spl_load_fs.o
|
|
obj-$(CONFIG_SPL_UT_LOAD_NET) += spl_load_net.o
|
|
obj-$(CONFIG_SPL_NOR_SUPPORT) += spl_load_nor.o
|
|
obj-$(CONFIG_SPL_UT_LOAD_OS) += spl_load_os.o
|
|
obj-$(CONFIG_SPL_UT_LOAD_SPI) += spl_load_spi.o
|