diff options
author | Ismael Luceno Cortes <ismael.luceno@silicon-gears.com> | 2019-04-15 11:19:15 +0000 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-04-26 17:53:16 -0400 |
commit | 423eba241d7cb7503bb9c41e02b17e71def86af7 (patch) | |
tree | 0241dd9440b8168598e995132e3ec6a3645915b4 /fs | |
parent | 633967f9818cb6a0e87ffa8cba33148a5bcc6edb (diff) | |
download | u-boot-423eba241d7cb7503bb9c41e02b17e71def86af7.zip u-boot-423eba241d7cb7503bb9c41e02b17e71def86af7.tar.gz u-boot-423eba241d7cb7503bb9c41e02b17e71def86af7.tar.bz2 |
fs: fat: Build only if CONFIG_FS_FAT=y
Signed-off-by: Ismael Luceno <ismael.luceno@silicon-gears.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/Makefile b/fs/Makefile index 10c735a..2ed4aea 100644 --- a/fs/Makefile +++ b/fs/Makefile @@ -15,7 +15,7 @@ obj-$(CONFIG_FS_BTRFS) += btrfs/ obj-$(CONFIG_FS_CBFS) += cbfs/ obj-$(CONFIG_CMD_CRAMFS) += cramfs/ obj-$(CONFIG_FS_EXT4) += ext4/ -obj-y += fat/ +obj-$(CONFIG_FS_FAT) += fat/ obj-$(CONFIG_FS_JFFS2) += jffs2/ obj-$(CONFIG_CMD_REISER) += reiserfs/ obj-$(CONFIG_SANDBOX) += sandbox/ |