diff options
author | Dan Murphy <dmurphy@ti.com> | 2014-02-03 06:59:01 -0600 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-02-19 10:47:43 -0500 |
commit | fff40a7e02092eee11970e7001c8560df419cac1 (patch) | |
tree | 503236e40ccc5a43f559ecf1ab61e216e73d0780 /spl | |
parent | 054c8388345184e38c7bd7f64a529fa346b63df2 (diff) |
common: spl: Add spl sata boot support
Add spl_sata to read a fat partition from a bootable SATA
drive.
Signed-off-by: Dan Murphy <dmurphy@ti.com>
Reviewed-by: Roger Quadros <rogerq@ti.com>
Diffstat (limited to 'spl')
-rw-r--r-- | spl/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/spl/Makefile b/spl/Makefile index 4143e3810cd..28fcfdd4862 100644 --- a/spl/Makefile +++ b/spl/Makefile @@ -85,6 +85,7 @@ LIBS-$(CONFIG_SPL_USBETH_SUPPORT) += drivers/usb/gadget/ LIBS-$(CONFIG_SPL_WATCHDOG_SUPPORT) += drivers/watchdog/ LIBS-$(CONFIG_SPL_USB_HOST_SUPPORT) += drivers/usb/host/ LIBS-$(CONFIG_OMAP_USB_PHY) += drivers/usb/phy/ +LIBS-$(CONFIG_SPL_SATA_SUPPORT) += drivers/block/ ifneq (,$(CONFIG_MX23)$(CONFIG_MX35)$(filter $(SOC), mx25 mx27 mx5 mx6 mx31 mx35)) LIBS-y += arch/$(ARCH)/imx-common/ |