summaryrefslogtreecommitdiffstats
path: root/fs/Makefile
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.m@jp.panasonic.com>2013-11-11 14:36:10 +0900
committerTom Rini <trini@ti.com>2013-11-17 14:11:34 -0500
commit4678d742567e282d9e0f786441f59102e8d3553e (patch)
tree7b0cd0b2ec5a21ab067947c08238abcf96a309a2 /fs/Makefile
parent57c3e5fcf2cbc791d9507c8b8c09df1ef21c043a (diff)
downloadtalos-obmc-uboot-4678d742567e282d9e0f786441f59102e8d3553e.tar.gz
talos-obmc-uboot-4678d742567e282d9e0f786441f59102e8d3553e.zip
fs: descend into sub directories when it is necessary
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Diffstat (limited to 'fs/Makefile')
-rw-r--r--fs/Makefile20
1 files changed, 10 insertions, 10 deletions
diff --git a/fs/Makefile b/fs/Makefile
index ee01a7d4a1..34dc0351ed 100644
--- a/fs/Makefile
+++ b/fs/Makefile
@@ -11,15 +11,15 @@ obj-$(CONFIG_SPL_FAT_SUPPORT) += fat/
else
obj-y += fs.o
-obj-y += cbfs/
-obj-y += cramfs/
-obj-y += ext4/
+obj-$(CONFIG_CMD_CBFS) += cbfs/
+obj-$(CONFIG_CMD_CRAMFS) += cramfs/
+obj-$(CONFIG_FS_EXT4) += ext4/
obj-y += fat/
-obj-y += fdos/
-obj-y += jffs2/
-obj-y += reiserfs/
-obj-y += sandbox/
-obj-y += ubifs/
-obj-y += yaffs2/
-obj-y += zfs/
+obj-$(CONFIG_CMD_FDOS) += fdos/
+obj-$(CONFIG_CMD_JFFS2) += jffs2/
+obj-$(CONFIG_CMD_REISER) += reiserfs/
+obj-$(CONFIG_SANDBOX) += sandbox/
+obj-$(CONFIG_CMD_UBIFS) += ubifs/
+obj-$(CONFIG_YAFFS2) += yaffs2/
+obj-$(CONFIG_CMD_ZFS) += zfs/
endif
OpenPOWER on IntegriCloud