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 Oct 12, 2020
1 parent 8e7f2e3 commit a92a46922967aacc6f55007b1cd6eb966c076265
Show file tree
Hide file tree
Showing 5 changed files with 1,102 additions and 0 deletions.
@@ -1528,4 +1528,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 a92a469

Please sign in to comment.