Sean Anderson | c56468a6 | 2023-10-14 16:47:57 -0400 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0+ |
| 2 | # Copyright (C) 2023 Sean Anderson <seanga2@gmail.com> |
| 3 | |
| 4 | config 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 | |
| 11 | if SPL_UT_LOAD |
| 12 | |
Sean Anderson | 59b3633 | 2023-10-14 16:48:00 -0400 | [diff] [blame] | 13 | config SPL_UT_LOAD_FS |
| 14 | bool "Unit tests for filesystems" |
| 15 | depends on SANDBOX && SPL_OF_REAL |
| 16 | depends on FS_LOADER |
Sean Anderson | 6c5d0d9 | 2023-10-14 16:48:01 -0400 | [diff] [blame^] | 17 | depends on SPL_BLK_FS |
Sean Anderson | 59b3633 | 2023-10-14 16:48:00 -0400 | [diff] [blame] | 18 | depends on SPL_FS_FAT |
| 19 | depends on SPL_FS_EXT4 |
| 20 | depends on SPL_MMC_WRITE |
| 21 | default y |
| 22 | help |
Sean Anderson | 6c5d0d9 | 2023-10-14 16:48:01 -0400 | [diff] [blame^] | 23 | Test filesystems and the various load methods which use them. |
Sean Anderson | 59b3633 | 2023-10-14 16:48:00 -0400 | [diff] [blame] | 24 | |
Sean Anderson | c56468a6 | 2023-10-14 16:47:57 -0400 | [diff] [blame] | 25 | config SPL_UT_LOAD_OS |
| 26 | bool "Test loading from the host OS" |
| 27 | depends on SANDBOX && SPL_LOAD_FIT |
| 28 | default y |
| 29 | help |
| 30 | Smoke test to ensure that loading U-boot works in sandbox. |
| 31 | |
| 32 | endif |