diff options
author | Keerthy <j-keerthy@ti.com> | 2018-11-05 11:34:52 +0530 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-11-16 16:52:00 -0500 |
commit | 48e2f0c966c024d8b7768b2bef98e7338420390c (patch) | |
tree | 670ee21fdcfba6d4450bb01034a35a4d14985a74 /fs | |
parent | 9ad3b049ed9f8b97d76b0e5986e7258bb0a0c92e (diff) | |
download | u-boot-48e2f0c966c024d8b7768b2bef98e7338420390c.tar.gz u-boot-48e2f0c966c024d8b7768b2bef98e7338420390c.tar.bz2 u-boot-48e2f0c966c024d8b7768b2bef98e7338420390c.zip |
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 <j-keerthy@ti.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
[trini: Add as obj-$(CONFIG_FS_LOADER) for non-SPL_FRAMEWORK builds]
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
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 |