From: Keerthy Date: Mon, 5 Nov 2018 06:04:52 +0000 (+0530) Subject: fs: Makefile: Add fs.c under SPL for fs_loader X-Git-Tag: v2025.01-rc5-pxa1908~3275^2~6 X-Git-Url: http://git.dujemihanovic.xyz/%7B%7B%20%24style.RelPermalink%20%7D%7D?a=commitdiff_plain;h=48e2f0c966c024d8b7768b2bef98e7338420390c;p=u-boot.git fs: Makefile: Add fs.c under SPL for fs_loader Add fs.c under SPL as well as it is needed for fs_loader Signed-off-by: Keerthy Reviewed-by: Simon Glass [trini: Add as obj-$(CONFIG_FS_LOADER) for non-SPL_FRAMEWORK builds] Signed-off-by: Tom Rini --- diff --git a/fs/Makefile b/fs/Makefile index bad0c2cc33..f21cd23f03 100644 --- a/fs/Makefile +++ b/fs/Makefile @@ -5,6 +5,7 @@ # Copyright (c) 2012, NVIDIA CORPORATION. All rights reserved. ifdef CONFIG_SPL_BUILD +obj-$(CONFIG_FS_LOADER) += fs.o obj-$(CONFIG_SPL_FAT_SUPPORT) += fat/ obj-$(CONFIG_SPL_EXT_SUPPORT) += ext4/ else