diff options
author | Stefan Agner <stefan.agner@toradex.com> | 2016-11-21 10:58:53 -0800 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-11-28 19:49:49 -0500 |
commit | e94793c844a40606252f2e3f6428063e057b3fd2 (patch) | |
tree | bf9216ab5d880d3bc5ea5197327cd0c0dd101aac /scripts/Makefile.spl | |
parent | 5991703e88f320767d9390d64a6a9bd62560696b (diff) | |
download | u-boot-e94793c844a40606252f2e3f6428063e057b3fd2.tar.gz |
spl: add USB Gadget config option
Introduce USB Gadget config option. This allows to combine Makefile
entries for SPL_USBETH_SUPPORT and SPL_DFU_SUPPORT.
Signed-off-by: Stefan Agner <stefan.agner@toradex.com>
Acked-by: Lukasz Majewski <l.majewski@samsung.com>
Tested-by: Ravi Babu <ravibabu@ti.com>
Diffstat (limited to 'scripts/Makefile.spl')
-rw-r--r-- | scripts/Makefile.spl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Makefile.spl b/scripts/Makefile.spl index 23b3997076..f379713ad3 100644 --- a/scripts/Makefile.spl +++ b/scripts/Makefile.spl @@ -66,7 +66,7 @@ endif libs-$(CONFIG_SPL_LIBDISK_SUPPORT) += disk/ libs-y += drivers/ -libs-$(CONFIG_SPL_DFU_SUPPORT) += drivers/usb/dwc3/ +libs-$(CONFIG_SPL_USB_GADGET_SUPPORT) += drivers/usb/dwc3/ libs-y += dts/ libs-y += fs/ libs-$(CONFIG_SPL_POST_MEM_SUPPORT) += post/drivers/ |