diff options
| author | Mayuresh Chitale <[email protected]> | 2023-06-03 19:32:54 +0530 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2023-06-19 17:19:44 -0400 |
| commit | 8ce6a2e1757718bb9e4e97f1fd7da94ba298fe73 (patch) | |
| tree | 7445eb6a53e9a8439a1440b1f18b7456e7b33769 /drivers/block | |
| parent | f3228a7232663c5690eed1a15f1299c25c910179 (diff) | |
spl: blk: Support loading images from fs
Add a generic API to support loading of SPL payload from any supported
filesystem on a given partition of a block device.
Signed-off-by: Mayuresh Chitale <[email protected]>
Diffstat (limited to 'drivers/block')
| -rw-r--r-- | drivers/block/Kconfig | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/block/Kconfig b/drivers/block/Kconfig index 5a1aeb3d2b4..6baaa6f0711 100644 --- a/drivers/block/Kconfig +++ b/drivers/block/Kconfig @@ -107,6 +107,13 @@ 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 + help + Use generic support to load images from fat/ext filesystems on + different types of block devices such as NVMe. + if EFI_MEDIA config EFI_MEDIA_SANDBOX |
