mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 08:57:58 +00:00
01acd6abbd
This introduces a coherent scheme for naming USB download gadget and functions config options. The download USB gadget config option is moved to CONFIG_USB_GADGET_DOWNLOAD for better consistency with other gadgets and each function's config option is moved to a CONFIG_USB_FUNCTION_ prefix. Signed-off-by: Paul Kocialkowski <contact@paulk.fr> Tested-by: Lukasz Majewski <l.majewski@samsung.com> Test HW: Odroid_XU3 (Exynos5422), trats (Exynos4210)
12 lines
307 B
Makefile
12 lines
307 B
Makefile
#
|
|
# Copyright (C) 2012 Samsung Electronics
|
|
# Lukasz Majewski <l.majewski@samsung.com>
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-$(CONFIG_USB_FUNCTION_DFU) += dfu.o
|
|
obj-$(CONFIG_DFU_MMC) += dfu_mmc.o
|
|
obj-$(CONFIG_DFU_NAND) += dfu_nand.o
|
|
obj-$(CONFIG_DFU_RAM) += dfu_ram.o
|
|
obj-$(CONFIG_DFU_SF) += dfu_sf.o
|