diff options
author | Guillaume GARDET <guillaume.gardet@free.fr> | 2014-10-15 17:53:12 +0200 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-10-27 17:54:03 -0400 |
commit | 592f922261993bad8cfb96395342e25eda6776e3 (patch) | |
tree | ef21d085acc9f863ea50a7d1446e2acaedbd1aff /common/spl/Makefile | |
parent | 205b4f33cfe58268df7d433f2da515fe660afd9c (diff) | |
download | u-boot-592f922261993bad8cfb96395342e25eda6776e3.tar.gz |
spl: Add EXT support to SPL
Add EXT filesystem support to SPL.
Signed-off-by: Guillaume GARDET <guillaume.gardet@free.fr>
[trini: Fix a warning and checkpatch problems]
Signed-off-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'common/spl/Makefile')
-rw-r--r-- | common/spl/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/spl/Makefile b/common/spl/Makefile index 64569c2cc6..10a4589969 100644 --- a/common/spl/Makefile +++ b/common/spl/Makefile @@ -18,5 +18,6 @@ obj-$(CONFIG_SPL_NET_SUPPORT) += spl_net.o obj-$(CONFIG_SPL_MMC_SUPPORT) += spl_mmc.o obj-$(CONFIG_SPL_USB_SUPPORT) += spl_usb.o obj-$(CONFIG_SPL_FAT_SUPPORT) += spl_fat.o +obj-$(CONFIG_SPL_EXT_SUPPORT) += spl_ext.o obj-$(CONFIG_SPL_SATA_SUPPORT) += spl_sata.o endif |