summaryrefslogtreecommitdiff
path: root/common/spl/Makefile
diff options
context:
space:
mode:
authorStefan Agner <stefan.agner@toradex.com>2017-08-16 21:00:54 +0300
committerStefano Babic <sbabic@denx.de>2017-08-23 11:41:58 +0300
commita3774c1c3c28e4ed89a36383ca73970b809bae94 (patch)
tree70ac6a2501b2522fcbde3491d51fae4bd0e595ba /common/spl/Makefile
parent2f005695df7b03d25a367f6bedc41c015088ee29 (diff)
downloadu-boot-a3774c1c3c28e4ed89a36383ca73970b809bae94.tar.xz
spl: add serial download protocol (SDP) support
Add USB serial download protocol support to SPL. If the SoC started in recovery mode the SPL will immediately switch to SDP and wait for further downloads/commands from the host side. Signed-off-by: Stefan Agner <stefan.agner@toradex.com> Reviewed-by: Stefano Babic <sbabic@denx.de> Reviewed-by: Ɓukasz Majewski <lukma@denx.de>
Diffstat (limited to 'common/spl/Makefile')
-rw-r--r--common/spl/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/common/spl/Makefile b/common/spl/Makefile
index fde0d09a5a..e229947b53 100644
--- a/common/spl/Makefile
+++ b/common/spl/Makefile
@@ -30,4 +30,5 @@ obj-$(CONFIG_$(SPL_TPL_)SATA_SUPPORT) += spl_sata.o
obj-$(CONFIG_$(SPL_TPL_)DFU_SUPPORT) += spl_dfu.o
obj-$(CONFIG_$(SPL_TPL_)SPI_LOAD) += spl_spi.o
obj-$(CONFIG_$(SPL_TPL_)RAM_SUPPORT) += spl_ram.o
+obj-$(CONFIG_$(SPL_TPL_)USB_SDP_SUPPORT) += spl_sdp.o
endif