X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=fs%2FMakefile;h=18221658fcbd3d79c80ab07c1b53183831cdc451;hb=1ad6364eeb4f578e423081d1748e8a3fdf1ab01d;hp=ee01a7d4a10779146befae73b4c8f9d76dc5b9b4;hpb=57c3e5fcf2cbc791d9507c8b8c09df1ef21c043a;p=platform%2Fkernel%2Fu-boot.git diff --git a/fs/Makefile b/fs/Makefile index ee01a7d..1822165 100644 --- a/fs/Makefile +++ b/fs/Makefile @@ -11,15 +11,14 @@ 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_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