diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2013-11-11 14:36:09 +0900 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-11-17 14:11:34 -0500 |
commit | 57c3e5fcf2cbc791d9507c8b8c09df1ef21c043a (patch) | |
tree | b2a80a01edbdbb0b5c8664d8c8840a538f44ceff /spl | |
parent | a52f90f074a84880f8cb13e060e9ca5f3c7d9c2f (diff) |
Makefile: move fs/fat/ entry to drivers/Makefile
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Cc: Simon Glass <sjg@chromium.org>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'spl')
-rw-r--r-- | spl/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spl/Makefile b/spl/Makefile index 5bc75b4bcea..29d7818df50 100644 --- a/spl/Makefile +++ b/spl/Makefile @@ -73,7 +73,7 @@ LIBS-$(CONFIG_SPL_MMC_SUPPORT) += drivers/mmc/ LIBS-$(CONFIG_SPL_SERIAL_SUPPORT) += drivers/serial/ LIBS-$(CONFIG_SPL_SPI_FLASH_SUPPORT) += drivers/mtd/spi/ LIBS-$(CONFIG_SPL_SPI_SUPPORT) += drivers/spi/ -LIBS-$(CONFIG_SPL_FAT_SUPPORT) += fs/fat/ +LIBS-y += fs/ LIBS-$(CONFIG_SPL_LIBGENERIC_SUPPORT) += lib/ LIBS-$(CONFIG_SPL_POWER_SUPPORT) += drivers/power/ \ drivers/power/pmic/ |