u-boot/test/image/Kconfig
Sean Anderson 5271e359a4 spl: Only support bl_len when we have to
Aligning addresses and sizes causes overhead which is unnecessary when we
are not loading from block devices. Remove bl_len when it is not needed.

For example, on iot2050 we save 144 bytes with this patch (once the rest of
this series is applied):

add/remove: 0/0 grow/shrink: 0/3 up/down: 0/-144 (-144)
Function                                     old     new   delta
spl_load_simple_fit                          920     904     -16
load_simple_fit                              496     444     -52
spl_spi_load_image                           384     308     -76
Total: Before=87431, After=87287, chg -0.16%

We use panic() instead of BUILD_BUG_ON in spl_set_bl_len because we still
need to be able to compile it for things like mmc_load_image_raw_sector,
even if that function will not be used.

Signed-off-by: Sean Anderson <seanga2@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
2023-11-16 13:49:14 -05:00

60 lines
1.4 KiB
Text

# SPDX-License-Identifier: GPL-2.0+
# Copyright (C) 2023 Sean Anderson <seanga2@gmail.com>
config SPL_UT_LOAD
bool "Unit tests for SPL load methods"
depends on SPL_UNIT_TEST
default y if SANDBOX
help
Test various SPL load methods.
if SPL_UT_LOAD
config SPL_UT_LOAD_FS
bool "Unit tests for filesystems"
depends on SANDBOX && SPL_OF_REAL
depends on FS_LOADER
depends on SPL_BLK_FS
depends on SPL_FS_FAT
depends on SPL_FS_EXT4
depends on SPL_MMC_WRITE
depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_SECTOR
default y
help
Test filesystems and the various load methods which use them.
config SPL_UT_LOAD_NAND
bool "Test loading from NAND flash"
depends on SANDBOX && SPL_OF_REAL
depends on SPL_NAND_SUPPORT
depends on SPL_MTD
default y
help
Test the NAND flash load method.
config SPL_UT_LOAD_NET
bool "Test loading over TFTP"
depends on SANDBOX && SPL_OF_REAL
depends on SPL_ETH
depends on USE_BOOTFILE
default y
help
Test loading images over TFTP using the NET image load method.
config SPL_UT_LOAD_SPI
bool "Test loading from SPI Flash"
depends on SANDBOX && SPL_OF_REAL
depends on SPL_SPI_LOAD
default y
help
Test the SPI flash image load metod.
config SPL_UT_LOAD_OS
bool "Test loading from the host OS"
depends on SANDBOX && SPL_LOAD_FIT
select SPL_LOAD_BLOCK
default y
help
Smoke test to ensure that loading U-boot works in sandbox.
endif