blob: 8f9e6ae036b06a30c71f180a9d585dd0098898c4 [file] [log] [blame]
Sean Andersonc56468a62023-10-14 16:47:57 -04001# SPDX-License-Identifier: GPL-2.0+
2# Copyright (C) 2023 Sean Anderson <seanga2@gmail.com>
3
4config SPL_UT_LOAD
5 bool "Unit tests for SPL load methods"
6 depends on SPL_UNIT_TEST
7 default y if SANDBOX
8 help
9 Test various SPL load methods.
10
11if SPL_UT_LOAD
12
Sean Anderson59b36332023-10-14 16:48:00 -040013config SPL_UT_LOAD_FS
14 bool "Unit tests for filesystems"
15 depends on SANDBOX && SPL_OF_REAL
16 depends on FS_LOADER
Sean Anderson6c5d0d92023-10-14 16:48:01 -040017 depends on SPL_BLK_FS
Sean Anderson59b36332023-10-14 16:48:00 -040018 depends on SPL_FS_FAT
19 depends on SPL_FS_EXT4
20 depends on SPL_MMC_WRITE
Sean Anderson6ba8eca2023-10-14 16:48:02 -040021 depends on SYS_MMCSD_RAW_MODE_U_BOOT_USE_SECTOR
Sean Anderson59b36332023-10-14 16:48:00 -040022 default y
23 help
Sean Anderson6c5d0d92023-10-14 16:48:01 -040024 Test filesystems and the various load methods which use them.
Sean Anderson59b36332023-10-14 16:48:00 -040025
Sean Anderson53d8bf82023-10-14 16:48:03 -040026config SPL_UT_LOAD_NET
27 bool "Test loading over TFTP"
28 depends on SANDBOX && SPL_OF_REAL
29 depends on SPL_ETH
30 depends on USE_BOOTFILE
31 default y
32 help
33 Test loading images over TFTP using the NET image load method.
34
Sean Anderson60d76e32023-10-14 16:48:05 -040035config SPL_UT_LOAD_SPI
36 bool "Test loading from SPI Flash"
37 depends on SANDBOX && SPL_OF_REAL
38 depends on SPL_SPI_LOAD
39 default y
40 help
41 Test the SPI flash image load metod.
42
Sean Andersonc56468a62023-10-14 16:47:57 -040043config SPL_UT_LOAD_OS
44 bool "Test loading from the host OS"
45 depends on SANDBOX && SPL_LOAD_FIT
46 default y
47 help
48 Smoke test to ensure that loading U-boot works in sandbox.
49
50endif