mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-16 09:54:35 +00:00

This is extremely similar to the MMC backend, but there are some notable differences. Works with a DFU string like scsi 4=u-boot-bin part 11 Where "4" is the SCSI dev number (sequential LUN across all SCSI devices) and "11" is the partition number. Reviewed-by: Mattijs Korpershoek <mkorpershoek@baylibre.com> Acked-by: Mattijs Korpershoek <mkorpershoek@baylibre.com> Signed-off-by: Caleb Connolly <caleb.connolly@linaro.org>
14 lines
503 B
Makefile
14 lines
503 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright (C) 2012 Samsung Electronics
|
|
# Lukasz Majewski <l.majewski@samsung.com>
|
|
|
|
obj-$(CONFIG_$(XPL_)DFU) += dfu.o
|
|
obj-$(CONFIG_$(XPL_)DFU_MMC) += dfu_mmc.o
|
|
obj-$(CONFIG_$(XPL_)DFU_MTD) += dfu_mtd.o
|
|
obj-$(CONFIG_$(XPL_)DFU_NAND) += dfu_nand.o
|
|
obj-$(CONFIG_$(XPL_)DFU_RAM) += dfu_ram.o
|
|
obj-$(CONFIG_$(XPL_)DFU_SF) += dfu_sf.o
|
|
obj-$(CONFIG_$(XPL_)DFU_WRITE_ALT) += dfu_alt.o
|
|
obj-$(CONFIG_$(XPL_)DFU_VIRT) += dfu_virt.o
|
|
obj-$(CONFIG_$(XPL_)DFU_SCSI) += dfu_scsi.o
|