diff options
author | Dan Murphy <dmurphy@ti.com> | 2014-01-16 11:23:30 -0600 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-01-24 16:59:22 -0500 |
commit | 8cffe5bd0d601f64eca78d28b8a710ad6ca8edd2 (patch) | |
tree | 17c1cec019810ffc5dcb4a59ab0522cec4c5fdf5 /common/spl/Makefile | |
parent | 773b5940b5f2fb5d1041c6f4db5796121ccd29c5 (diff) | |
download | u-boot-8cffe5bd0d601f64eca78d28b8a710ad6ca8edd2.tar.gz |
spl: common: Support for USB MSD FAT image loading
Add SPL support to be able to detect a USB Mass Storage device
connected to a USB host. Once a USB Mass storage device is detected
the SPL will load the u-boot.img from a FAT partition to target address.
Signed-off-by: Dan Murphy <dmurphy@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 c8d5963df7..65a1484fc4 100644 --- a/common/spl/Makefile +++ b/common/spl/Makefile @@ -16,5 +16,6 @@ obj-$(CONFIG_SPL_NAND_SUPPORT) += spl_nand.o obj-$(CONFIG_SPL_ONENAND_SUPPORT) += spl_onenand.o 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 endif |