diff options
author | Mayuresh Chitale <mchitale@ventanamicro.com> | 2023-06-03 19:32:54 +0530 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-06-19 17:19:44 -0400 |
commit | 8ce6a2e1757718bb9e4e97f1fd7da94ba298fe73 (patch) | |
tree | 7445eb6a53e9a8439a1440b1f18b7456e7b33769 /drivers | |
parent | f3228a7232663c5690eed1a15f1299c25c910179 (diff) | |
download | u-boot-8ce6a2e1757718bb9e4e97f1fd7da94ba298fe73.zip u-boot-8ce6a2e1757718bb9e4e97f1fd7da94ba298fe73.tar.gz u-boot-8ce6a2e1757718bb9e4e97f1fd7da94ba298fe73.tar.bz2 |
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 <mchitale@ventanamicro.com>
Diffstat (limited to 'drivers')
-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 5a1aeb3d..6baaa6f 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 |