From 57c3e5fcf2cbc791d9507c8b8c09df1ef21c043a Mon Sep 17 00:00:00 2001 From: Masahiro Yamada Date: Mon, 11 Nov 2013 14:36:09 +0900 Subject: Makefile: move fs/fat/ entry to drivers/Makefile Signed-off-by: Masahiro Yamada Cc: Simon Glass Acked-by: Simon Glass --- fs/Makefile | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'fs/Makefile') diff --git a/fs/Makefile b/fs/Makefile index bdcd74631d..ee01a7d4a1 100644 --- a/fs/Makefile +++ b/fs/Makefile @@ -6,11 +6,15 @@ # SPDX-License-Identifier: GPL-2.0+ # +ifdef CONFIG_SPL_BUILD +obj-$(CONFIG_SPL_FAT_SUPPORT) += fat/ +else obj-y += fs.o obj-y += cbfs/ obj-y += cramfs/ obj-y += ext4/ +obj-y += fat/ obj-y += fdos/ obj-y += jffs2/ obj-y += reiserfs/ @@ -18,3 +22,4 @@ obj-y += sandbox/ obj-y += ubifs/ obj-y += yaffs2/ obj-y += zfs/ +endif -- cgit v1.2.1