diff options
| author | Tom Rini <[email protected]> | 2026-03-16 19:24:31 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2026-03-30 15:02:27 -0600 |
| commit | c40e539c77fbd3b68168c995f3dda64548b033d6 (patch) | |
| tree | bf4cb648d804e383e40aca5104d3ebec83807680 /drivers | |
| parent | 7938048594d0edf6b1012e787fd0efda8b214aa8 (diff) | |
SPL: Rework logic around SPL_BLK_FS (and SPL_NVME)
As exposed by "make randconfig", we have an issue around SPL_BLK_FS.
This is functionally a library type symbol that should be selected when
required and select what it needs. Have SPL_BLK_FS select SPL_FS_LOADER
and then SPL_NVME will now correctly select SPL_FS_LOADER via
SPL_BLK_FS.
Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/block/Kconfig | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/block/Kconfig b/drivers/block/Kconfig index 461b5a9fc83..adf338ab00c 100644 --- a/drivers/block/Kconfig +++ b/drivers/block/Kconfig @@ -106,8 +106,9 @@ config EFI_MEDIA For sandbox there is a test driver. config SPL_BLK_FS - bool "Load images from filesystems on block devices" - depends on SPL_BLK && SPL_FS_LOADER + bool + depends on SPL_BLK + select SPL_FS_LOADER help Use generic support to load images from fat/ext filesystems on different types of block devices such as NVMe. |
