This feature can be useful where the host wants to provide more than one block device, since it allows all of them to be under one virtio device. Add an implementation of virtio-scsi Series-to: concept Cover-letter: virtio: Support SCSI over virtio U-Boot supports virtio-blk and in most cases this is sufficient for providing access to a disk. However some larger users such as LXD prefer virtio-scsi since it groups disks together and provides unified probing of devices. This series implements this protocol. END Signed-off-by: Simon Glass <sjg@chromium.org>
17 lines
682 B
Makefile
17 lines
682 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright (C) 2018, Tuomas Tynkkynen <tuomas.tynkkynen@iki.fi>
|
|
# Copyright (C) 2018, Bin Meng <bmeng.cn@gmail.com>
|
|
|
|
obj-y += virtio-uclass.o virtio_ring.o
|
|
obj-$(CONFIG_VIRTIO_MMIO) += virtio_mmio.o
|
|
obj-$(CONFIG_VIRTIO_PCI) += virtio_pci_modern.o
|
|
obj-$(CONFIG_VIRTIO_PCI_LEGACY) += virtio_pci_legacy.o
|
|
obj-$(CONFIG_VIRTIO_SANDBOX) += virtio_sandbox.o
|
|
obj-$(CONFIG_VIRTIO_SANDBOX_EMUL) += sandbox_emul.o emul_blk.o
|
|
obj-$(CONFIG_VIRTIO_NET) += virtio_net.o
|
|
obj-$(CONFIG_VIRTIO_BLK) += virtio_blk.o
|
|
obj-$(CONFIG_VIRTIO_RNG) += virtio_rng.o
|
|
obj-$(CONFIG_VIRTIO_FS) += fs.o fs_dir.o fs_file.o fs_compat.o
|
|
obj-$(CONFIG_VIRTIO_SCSI) += virtio_scsi.o
|