summaryrefslogtreecommitdiff
path: root/common/spl/Makefile
diff options
context:
space:
mode:
authorMayuresh Chitale <[email protected]>2023-06-03 19:32:54 +0530
committerTom Rini <[email protected]>2023-06-19 17:19:44 -0400
commit8ce6a2e1757718bb9e4e97f1fd7da94ba298fe73 (patch)
tree7445eb6a53e9a8439a1440b1f18b7456e7b33769 /common/spl/Makefile
parentf3228a7232663c5690eed1a15f1299c25c910179 (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 'common/spl/Makefile')
-rw-r--r--common/spl/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/common/spl/Makefile b/common/spl/Makefile
index 13db3df9933..5210ad0248c 100644
--- a/common/spl/Makefile
+++ b/common/spl/Makefile
@@ -10,6 +10,7 @@ ifdef CONFIG_SPL_BUILD
obj-$(CONFIG_$(SPL_TPL_)FRAMEWORK) += spl.o
obj-$(CONFIG_$(SPL_TPL_)BOOTROM_SUPPORT) += spl_bootrom.o
obj-$(CONFIG_$(SPL_TPL_)LOAD_FIT) += spl_fit.o
+obj-$(CONFIG_$(SPL_TPL_)BLK_FS) += spl_blk_fs.o
obj-$(CONFIG_$(SPL_TPL_)LEGACY_IMAGE_FORMAT) += spl_legacy.o
obj-$(CONFIG_$(SPL_TPL_)NOR_SUPPORT) += spl_nor.o
obj-$(CONFIG_$(SPL_TPL_)XIP_SUPPORT) += spl_xip.o