Skip to content
Permalink
Browse files
ZEN: Add VHBA driver
remote git://git.code.sf.net/p/cdemu/code
tag    vhba-module-20200106
  • Loading branch information
heftig committed Aug 3, 2020
1 parent 6b4937a commit 5664a4e6b6af231e79f53494742a7d7a08ba72d7
Show file tree
Hide file tree
Showing 5 changed files with 1,102 additions and 0 deletions.
@@ -1522,4 +1522,6 @@ endif # SCSI_LOWLEVEL

source "drivers/scsi/device_handler/Kconfig"

source "drivers/scsi/vhba/Kconfig"

endmenu
@@ -153,6 +153,7 @@ obj-$(CONFIG_CHR_DEV_SCH) += ch.o
obj-$(CONFIG_SCSI_ENCLOSURE) += ses.o

obj-$(CONFIG_SCSI_HISI_SAS) += hisi_sas/
obj-$(CONFIG_VHBA) += vhba/

# This goes last, so that "real" scsi devices probe earlier
obj-$(CONFIG_SCSI_DEBUG) += scsi_debug.o
@@ -0,0 +1,9 @@
config VHBA
tristate "Virtual (SCSI) Host Bus Adapter"
depends on SCSI
---help---
This is the in-kernel part of CDEmu, a CD/DVD-ROM device
emulator.

This driver can also be built as a module. If so, the module
will be called vhba.
@@ -0,0 +1,4 @@
VHBA_VERSION := 20200106

obj-$(CONFIG_VHBA) += vhba.o
ccflags-y := -DVHBA_VERSION=\"$(VHBA_VERSION)\" -Werror

0 comments on commit 5664a4e

Please sign in to comment.